Error Handling
This section describes error responses defined in openapi.yaml.
Error Schema
The shared Error schema is:
{
"error": "Invalid API token",
"code": 401
}
HTTP Status Codes
Common error status codes used across endpoints:
Code | Meaning |
|---|---|
400 | Bad Request |
401 | Unauthorized |
403 | Forbidden |
404 | Not Found |
409 | Conflict |
422 | Unprocessable Entity |
500 | Internal Server Error |
17 March 2026