API Request Authentication Help

How do I authenticate a request to the API?

API requests are authenticated by sending a valid access token in the headers of the HTTP request.

The request MUST be made over HTTPS. Unsecured HTTP requests are not supported.

The request header is in the following format:

Authorization: Bearer access_token_value

For example:

GET /api HTTP/1.1
Host: server.example.com
Authorization: Bearer mF_9.B5f-4.1JqM...

If the access token is invalid, the API server will respond with a 401 HTTP response code.

Can I use an access token to log in and access your website?

No, access tokens can only be used to access our API.

Cannot find the answer to your question? Visit our support page for personalized support by our staff.