This page describes the common error codes that may occur across all APIs.
For API-specific error codes, please refer to the individual API documentation pages.400 Bad Request#
| Error Code | Description |
|---|
| BAD_REQUEST | Default error code for 400 Bad Request responses. Invalid or missing query parameters. Malformed JSON in the request body. |
| |
401 Unauthorized#
| Error Code | Description |
|---|
| MISSING_AUTH_TOKEN | Auth token missing in the request. |
| MISSING_ACCESS_KEY | Access key missing in the request. |
| INVALID_ACCESS_KEY | Invalid access Key. |
| MISSING_IAT_CLAIM | JWT 'iat' claim missing in the request. |
| INVALID_AUTH_TOKEN | Invalid auth token. |
| EXPIRED_AUTH_TOKEN | Expired auth token. |
403 Forbidden#
| Error Code | Description |
|---|
| NOT_ENOUGH_PERMISSION | Default error code for 403 Forbidden responses. Specific APIs may return more detailed error codes. |
404 Not Found#
| Error Code | Description |
|---|
| RESOURCE_NOT_FOUND | Default error code for 404 Not Found responses. Specific APIs may return more detailed error codes. |
429 Too Many Requests#
500 Internal Server Error#
| Error Code | Description |
|---|
| INTERNAL_ERROR | Default error code for unexpected server error responses. Specific APIs may return more detailed error codes. |
Error Response Model#
All error responses follow the standard response format described below.{
"errorCode": "INVALID_AUTH_TOKEN",
"reason": "Invalid Or Missing Auth Token"
}
• errorCode: Application-specific error code.
• reason: Human-readable description of the error. Modified at 2026-03-03 18:04:16