Skip to main content
POST
Generate Bearer access token

Authorizations

Authorization
string
header
required

Used only by the token endpoint. The username is your Client ID and the password is your Client Secret (sent as Basic base64(client_id:client_secret)).

Body

application/x-www-form-urlencoded
grant_type
enum<string>
required

OAuth 2.0 grant type. Always client_credentials.

Available options:
client_credentials

Response

Token generated successfully.

access_token
string
required

The Bearer access token. Send it on every other endpoint as Authorization: Bearer {access_token}.

expires_in
integer
required

Token lifetime in seconds. Always 3600 (1 hour).

token_type
string
required

Always Bearer.