Naxai uses conventional HTTP response codes to indicate the success or failure of an API request.
In general: Codes in the 2xx range indicate success. Codes in the 4xx range indicate an error that failed given the information provided (e.g., a required parameter was omitted, etc.). Codes in the 5xx range indicate an error with Naxai's servers (these are rare).
Some 4xx errors that could be handled programmatically include an error code briefly explaining the reported error.
Code | Error |
---|---|
200 | Ok |
400 | Bad Request |
401 | Unauthorized |
403 | Forbidden |
404 | Not Found |
429 | Too Many Requests |
500, 502, 503, 504 | Server Errors |
Error Codes
Some Errors include an error code—a short string with a brief explanation. These codes play a role in our recommended error-handling techniques.
Below is a list of possible error codes, along with additional information about how to resolve them.