Status Codes

The following codes are valid:

CodeNameReason
200SuccessEverything worked successfully!
400Bad RequestYour request could not be understood by the server.
401UnauthorizedWe couldn't authorize you, or you have used the wrong API key
403ForbiddenThe resource requested is restricted for your API Key.
404Not FoundThe specified resource could not be found.
405Method Not AllowedYou tried to access a resource with an invalid method.
429Too many requestsYou’re requesting too much! Slow down!
500Internal Server ErrorHell's fire let loose
503Service UnavailableWe’re temporarily offline for maintenance. Please try again later.

❗️

Watch Out!

We may return errors not listed above, so don't rely on the errors. Check the content of the JSON blob as well.

All errors will return a JSON blob in the following format:

{
  code: 403,
  message: "Your API Key does not have the privilege to access this set of information"
}