Errors
We use standard HTTP error codes to provide information on the outcome of each request.
As per the HTTP standard, 2xx
codes indicate success, 4xx
codes indicate that the request
cannot be fulfilled due to either bad synthax or wrong parameters, and 5xx
codes indicate
that the server failed to fulfill a valid request (these are errors on our side and should be rare).
HTTP Status Codes
HTTP Status Codes
200 | Ok | Successful request. |
400 | Bad Request | The request is malformed, typically due to a missing or incorrect parameter. |
402 | Request Failed | The request failed, even though the parameters are valid. |
403 | Forbidden | The provided authentication method does not have the necessary permissions to perform this request. |
404 | Not Found | The requested resource could not be found. |
409 | Conflict | This request conflicts with another request. |
429 | Too Many Requests | You have sent too many requests in a given amount of time. |
5xx | Server Errors | Something went wrong on our end. |