Common format
Common codes
Recommendation
Handle errors usingstatusCode and errorCode. Show friendly messages to end users and log details internally when available.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Error format and common codes
{
"statusCode": 400,
"errorCode": "INVALID_INPUT",
"message": "O valor fornecido para o campo 'amount' é inválido.",
"details": {
"field": "amount",
"value": -20,
"issue": "O valor deve ser positivo e maior que zero."
}
}
| Code | Description |
|---|---|
INVALID_INPUT | Invalid data |
UNAUTHORIZED | Missing or invalid credentials |
FORBIDDEN | No permission to access the resource |
NOT_FOUND | Resource not found |
INTERNAL_ERROR | Internal error |
RATE_LIMITED | Request limit exceeded |
API_BLOCKED | API blocked due to location, configuration, or IP |
POLLING_BLOCKED | Frequent polling blocked |
statusCode and errorCode. Show friendly messages to end users and log details internally when available.