Skip to main content
Use the shared SKOR authentication flow, then make your first protected Modular API request.

Prerequisites

Before you begin, make sure you have:
  • A SKOR API client_id
  • A SKOR API client_secret
  • The SKOR Modular API base URL for your environment

Choose a base URL

https://api.skortorent.com/api/v1
Choose an environment once. The Production and Sandbox tabs stay synchronized across the examples on this page. Use credentials issued for the selected environment.
1

Generate an access token

Send a token request to Generate Access Token using HTTP Basic Authentication. Use your client_id as the username and your client_secret as the password.
The response returns a one-hour token for authenticated API requests.
2

Store the token securely

Treat the token as a secret. Do not expose it in client-side code, logs, or public repositories.
3

Call protected endpoints

Send the token as a bearer token in the Authorization header. This example calls Get All Tenants.
Need credentials or help with authentication? Contact info@skortorent.com.