client_id and client_secret issued to your account.
You can find your API credentials in the API Management section of your dashboard.

Request a token
Send a Response (200)Errors
POST request to /auth/token/issue with your credentials to receive a JWT access token. See the full Issue Token API reference for details.Request bodyclient_id(string, required): your client UUIDclient_secret(string, required): your API secret
401 INVALID_CREDENTIALS— Invalidclient_idorclient_secret429 RATE_LIMIT_EXCEEDED— Too many requests; rate limit exceeded
Use the token
Send the token in the Example authenticated requestBest practices
Authorization header for all authenticated requests:- Cache tokens and reuse them until they expire
- Refresh the token before
expires_inelapses - Never expose
client_secretin client-side code, logs, or public repositories - Retry token issuance with exponential backoff on
429