Responses

Responses may return with one of the following headers.

HTTP/1.1 200 OK

  • Occurs when request properly made and user has corresponding subscription to match request made.

HTTP/1.1 403 Forbidden

  • Occurs if page doesn’t exist or api key does not have sufficient authority.
{
  "errorMsg": "Access forbidden"
}

HTTP/1.1 405 Method Not Allowed

  • Occurs in most caeses when using a rest api method besides POST
{
  "errorMsg": "Method Not Allowed"
}

HTTP/1.1 412 Precondition Failed

  • Occurs if missing any of the parameters token, key, or r.
{
  "errorMsg": "Precondition Failed"
}

HTTP/1.1 429 Too Many Requests

  • Occurs if requests for an api key have exceeded the limit in customer’s subscription plan.
{
  "errorMsg": "Too Many Requests",
  "errors": "Rate exceeded, consider upgrading your subscription or using a different key. Resets after 60 minutes."
}