Skip to main content

OAuth 2.0

The Rntor API uses OAuth 2.0 for authentication. All API requests must include a valid access token in the Authorization header.
Authorization: Bearer YOUR_ACCESS_TOKEN

Getting Your API Credentials

  1. Log in to your Rntor Dashboard
  2. Navigate to SettingsAPI & Integrations
  3. Click Create API Key
  4. Copy your Client ID and Client Secret
Keep your Client Secret secure. Never expose it in client-side code or public repositories.

Required Headers

All API requests must include the following headers:
HeaderDescription
AuthorizationYour API client secret as a Bearer token
X-Client-IDYour API client ID
Content-Typeapplication/json for requests with a body

Example Request

curl -X GET "https://api.rntor.com/v1/networks" \
  -H "Authorization: Bearer YOUR_CLIENT_SECRET" \
  -H "X-Client-ID: YOUR_CLIENT_ID"

Scopes

API keys can be configured with specific scopes to limit access:
ScopeDescription
read:bookingsRead booking data
write:bookingsCreate and modify bookings
read:membersRead member information
write:membersCreate and modify members
read:resourcesRead resource data
write:resourcesCreate and modify resources
read:invoicesRead invoice data
write:invoicesCreate and modify invoices
Request only the scopes your integration needs. This follows the principle of least privilege.