Skip to main content
This is a bearer token generated through the /token route using the Client ID and Client Secret. The token is used to authenticate requests made to the API routes, except for /token, where the token is generated.

How to obtain the token

You must send a request to the /token route using the Client ID and Client Secret.

How to use the token

For API routes, except for /token, the token must be sent in the request header (Authorization) as follows:
"Authorization": "Bearer <token>"

Expiration time

By default, the token is configured to expire in 1 hour (3600 seconds).