Documentation Index
Fetch the complete documentation index at: https://docs.rntor.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
OAuth 2.0
The Rntor API uses OAuth 2.0 for authentication. All API requests must include a valid access token in theAuthorization header.
Getting Your API Credentials
- Log in to your Rntor Dashboard
- Navigate to Settings → API & Integrations
- Click Create API Key
- Copy your Client ID and Client Secret
Required Headers
All API requests must include the following headers:| Header | Description |
|---|---|
Authorization | Your API client secret as a Bearer token |
X-Client-ID | Your API client ID |
Content-Type | application/json for requests with a body |
Example Request
Scopes
API keys can be configured with specific scopes to limit access:| Scope | Description |
|---|---|
read:bookings | Read booking data |
write:bookings | Create and modify bookings |
read:members | Read member information |
write:members | Create and modify members |
read:resources | Read resource data |
write:resources | Create and modify resources |
read:invoices | Read invoice data |
write:invoices | Create and modify invoices |
Request only the scopes your integration needs. This follows the principle of least privilege.