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

  1. 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
  2. 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 Authorization header.
  • The token must be prefixed with Bearer (e.g., Authorization: Bearer your_token).