Authenticating to the API

When submitting requests that require authentication, you'll need to ensure that you provide appropriate credentials with any requests.

Obtaining an API token

API Keys are only available on a pre-shared basis.

Authorization Header

This API requires that you send your token/secret as a bearer token in the Authorization header. For example:

Authorization: Bearer {token}

Potential errors

Any of the following errors may be raised on any request that requires authentication.

Details HTTP status

invalid_api_token

The API token provided was not valid (it may not exist or have expired)

403 Forbidden

missing_api_token

No API token was provided in the Authorization header. Ensure a token is provided prefixed with Bearer

400 Bad Request