Obtain Your Tokens
Once you've generated your secret key, you can use it to get your access token and refresh token. Here's how:
- Make a POST request to our token endpoint see API Docs with your secret key in the body, depending on our API's specification.
- The server will return a JSON object that contains your access token and refresh token.
Your access token is short-lived and used for authenticating API calls. Your refresh token has a longer life (1 month) and is used to obtain new access tokens once the current one expires.