Obtain authentication token
POST/auth/token
Authenticates your client credentials and returns a bearer token required for accessing protected API endpoints.
Request
Responses
- 200
- 400
- 401
Authenticated. A successful request returns a bearer token and related metadata:
Response Fields
- access_token (string): The token used to authenticate API requests. Include this in the Authorization header as Bearer <access_token>.
- expires_in (number): Token validity duration in seconds (e.g. 300 = 5 minutes).
- refresh_expires_in (number): Always 0 – token refresh is not supported.
- token_type (string): Always Bearer.
- not-before-policy (number): Internal policy value (typically 0), safe to ignore.
- scope (string): Scope of access for the token (e.g. public-api).
Authentication Failed
Unauthorized