Why status codes matter
Use status codes to decide whether to retry, fix input, or treat a request as successful.Common status codes
Use this table as a quick reference while debugging.| Status | Meaning |
|---|---|
| 200 | Success |
| 202 | Accepted for processing |
| 400 | Invalid request |
| 401 | Authentication required or failed |
| 404 | Resource not found |
| 422 | Validation error |
| 429 | Rate limited |
| 500 | Server error |
| 503 | Service unavailable |
Error response format
Use the error schema defined in each model OpenAPI specification to parse failures. Typical responses include only amessage field: