200 | OK: The request was processed successfully. | { "status": "OK" } |
201 | Created: The request resulted in a new resource. | { "status": "Created", "data": {...} } |
204 | No Content: The request was processed successfully, but there's no content to return. | {} |
400 | Bad Request: The server encountered a malformed request due to syntax errors. | { "error": "Bad request" } |
401 | Unauthorized: Authentication is required, but either it has failed or hasn't been provided. | { "error": "Unauthorized" } |
403 | Forbidden: The server understood the request but refuses to authorize it due to permission restrictions. | { "error": "Forbidden" } |
404 | Not Found: The requested resource could not be located on the server. | { "error": "Not Found" } |
500 | Internal Server Error: A generic error message indicating an issue with the server. | { "error": "Internal Server Error" } |
429 | Too Many Requests: The user has exceeded the allowed request limit within a specified timeframe. | { "error": "Too Many Requests" } |
401.1 | Invalid API Key: The provided API Key is invalid. | { "error": "Invalid API Key" } |
401.2 | Expired API Key: The provided API Key has expired and is no longer valid. | { "error": "Expired API Key" } |
409 | Conflict: The request could not be completed due to a conflict with the current state of the resource. | { "error": "Conflict" } |