Access Token
Generate an Access Token to start making request to our API.
Endpoints that require authentication must provide a JWT bearer token.
Acquiring an access token
- Use the Obtain Access Token endpoint.
- Its required to have an already generated API key
- Provide the API key's client ID and secret inside the request
- The response will include:
- The access token.
- The token type (in this case "Bearer").
- The token's expiration time in seconds.
Using the Access Token
When calling an endpoint that requires authorization:
- Include the token in the
Authorizationheader. - The token must be prefixed with
Bearer(e.g.,Authorization: Bearer your_token).
Updated 4 months ago
