Support
Error handling
Consistent error responses and HTTP status codes.
Standard error shape
{ "error": "Invalid domain" }
Some responses include additional fields such as detail or hint.
Common status codes
| Status | Meaning | Typical causes |
|---|---|---|
| 400 | Bad Request | Invalid inputs, missing params |
| 401 | Unauthorized | Missing or invalid auth |
| 404 | Not Found | Unknown domain, account, or record |
| 409 | Conflict | Domain or account already exists |
| 429 | Too Many Requests | Rate limit exceeded |
| 500 | Server Error | Unhandled exceptions or database issues |