Authenticating to the API

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

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

401 Unauthorized

scope_not_granted

The scope required for this endpoint has not been granted to the authenticating identity

403 Forbidden