Skip to main content
To get access you will need to get in touch with our support team via email or chat. Once you have the keys, you can use them to authenticate with the API.

Key types

There are two types of keys available for the API: access_token and refresh_token. The access_token is used to authenticate the user and the refresh_token is used to refresh the access token.
Access tokens are valid indefinitely, but you can refresh them using the refresh token.
If you will need to refresh the access token, you can use the /auth/refresh-tokens endpoint.

Authentication

To authenticate with the API, you need to include the access_token in the header of your request.

// Add to the header of your request
{
  "Authorization": "Bearer YOUR_ACCESS_TOKEN"
}