Skip to main content
All error responses follow a standard format and are nested under an errors key in the response. The value will be an array of error messages.
{
  "errors": [
    "You are not authorized to view this resource."
  ]
}
Status CodeMessageReason
401Unauthorized or Invalid TokenEither you are using an invalid token, or you do not have access to perform that action.
404Not FoundThe requested resource could not be found. This could be due to a mistyped URL or a resource that has been deleted.
429Too Many RequestsThe user has sent too many requests in a given amount of time. See the Rate Limiting section for details.
500Internal Server ErrorAn unexpected condition was encountered. This is a generic error message for server-side issues.
422Unprocessable EntityThe request was well-formed but was unable to be followed due to semantic errors. This often occurs with validation errors on input data.