HTTP status codes
A message a website 's server sends to the browser to indicate whether or not that request can be fulfilled
HTTP status code | Title | Description |
---|---|---|
200 | Ok | Request was successful |
201 | Created | Request successful |
204 | No content | No data found |
400 | Bad Request | Invalid data given. Details are available in the response. |
401 | Unauthorized | General authorization error. Incorrect login or password. OR The user doesn't have rights to request this information. OR Your token has expired. |
402 | Payment Required | In the case of subscription termination, access to the data via the API will be closed 30 days after the end of the subscription. In response to requests, the server will return a 402 HTTP code. |
403 | Forbidden | Access to this account is prohibited from your IP address. |
404 | Page Not found | A server could not find a client-requested webpage. |
405 | Method Not Allowed | You can't use this method, make sure you use the correct method. |
422 | Unprocessable entity | Request can not be processed. Details are available in the request response. |
429 | Too Many Request | The user has sent too many requests in a given amount of time. |
500 | Internal Server Error | The server encountered an unexpected condition that prevented it from fulfilling the request. |
Updated about 2 months ago