Authentication Methods
There are two ways to authenticate with our API: Bearer tokens and API keys. You can find the authentication method for each endpoint in the OpenAPI specification file. When building client applications, you can use the Bearer token or public API key to authenticate requests. For server-to-server communication, you can use just your API keys.Do not expose your API keys in public repositories. Use environment variables or a secure method to store and use your API keys.
Authorization Headers
When making requests to our API, you need to include your API key or Bearer token in theAuthorization
or x-api-key
header. The format of the Authorization
header is as follows:
401: Unauthorized
status code.