Authentication and authorization
To use our APIs, your identity must be verified (authentication) and your access rights confirmed (authorization). Your API keys are your credentials — keep them secret.
For most APIs, you exchange your API keys for a short-lived access token, then include that token in every API request.
- Your integration sends a request with API keys to the Access Token API.
- Access Token API returns an access token.
- Your integration sends an API request with the token in the Authorization header.
- The API returns a response.
When you're ready to implement, see the Access Token API to identify which method applies to you.