v4

latestOpenAPI 3.1.0raw.githubusercontent.com2025-10-10282656.2 KB
Auth

Obtain an access token (OAuth 2.0 Client Credentials)

post/v1/oauth/token

Request body

client_idstring required
client_secretstring required
grant_type'client_credentials' required

Response

Access token

access_tokenstring required
token_typestring required
expires_ininteger required

Example response

{
  "token_type": "Bearer",
  "expires_in": 3600
}