Statuses
Statuses
Code | Description |
---|---|
200 | OK – The request succeeded. |
201 | Created - The request succeeded, and a new resource was created as a result. |
300 | Multiple Choice – The request has more than one possible response. |
301 | Moved Permanently - The URL of the requested resource has been changed permanently. |
302 | Found - This response code means that the URI of requested resource has been changed temporarily. |
303 | See Other - The server sent this response to direct the client to get the requested resource at another URI with a GET request. |
304 | Not Modified - This is used for caching purposes. It tells the client that the response has not been modified, so the client can continue to use the same cached version of the response. |
Error Messages
All API endpoints are handling errors will respond with HTTP errors described below:
Code | Description |
---|---|
400 | Bad Request -- Your request is invalid. |
401 | Unauthorized -- Your API key/secret is wrong. |
403 | Forbidden -- The resource requested is hidden for administrators only. |
404 | Not Found -- The specified resource could not be found. |
405 | Method Not Allowed -- You tried to access a resource with an invalid method. |
429 | Too Many Requests -- Exceeded the access frequency limit. |
500 | Internal Server Error -- We had a problem with our server. Try again later. |
503 | Service Unavailable -- We're temporarily offline for maintenance. Please try again later. |
Updated about 2 years ago