Errors
The API uses standard HTTP status codes to indicate the outcome of requests.
Status codes
| Code | Meaning |
|---|---|
200 |
Success |
401 |
Unauthorized - no token provided or token is invalid |
403 |
Forbidden - token does not have access to this resource |
404 |
Not found - the resource does not exist |
429 |
Too many requests - rate limit exceeded |
500 |
Internal server error |
Error response format
Error responses include a JSON body with an error or message field:
{
"error": "Account or event not found"
}
Common errors
401 Unauthorized
Your API token is missing or invalid. Check that you're including the Authorization: Bearer YOUR_TOKEN header.
403 Forbidden
Your API token does not have access to the requested resource. API tokens are scoped to a specific account.
404 Not found
The resource you requested does not exist. Check that the account slug, event slug, or resource ID is correct.