Learn how to authenticate your API requests
Authorization
header of every request.
Authorization
header with the Bearer
prefix:
Header | Value | Required |
---|---|---|
Authorization | Bearer YOUR_API_KEY | Yes |
Content-Type | application/json | Yes |
429 Too Many Requests
errorHeader | Description |
---|---|
X-RateLimit-Limit | Maximum requests per minute |
X-RateLimit-Remaining | Remaining requests in current window |
X-RateLimit-Reset | Time when rate limit resets (Unix timestamp) |
Status Code | Error | Description |
---|---|---|
401 | Unauthorized | Missing or invalid API key |
403 | Forbidden | API key doesn’t have required permissions |
429 | Too Many Requests | Rate limit exceeded |