Skip to main content
When a request fails, the API returns a JSON error object with a machine-readable error type and a human-readable message. See Error handling for a full list of error codes and troubleshooting guidance.

Fields

error
string
required
Machine-readable error type (e.g. Unauthorized, NotFound, ValidationError, TooManyRequests).
message
string
required
Human-readable description of what went wrong.

Examples

{
  "error": "Unauthorized",
  "message": "Invalid API token"
}