Errors
Our API returns standard HTTP success or error status codes. For errors, we will also include extra information about what went wrong encoded in the response as JSON. The various HTTP status codes we might return are listed below.
When requesting data to graphQL endpoints you will always get a 200 OK response, In those cases look for object `errors` to find the error information.
HTTP StatusCode
Code
Title
Description
200
OK
The request was successful.
400
Bad request
Bad request
403
Unauthorized
Your API key is invalid.
404
Not found
The resource does not exist.
429
Too Many Requests
The rate limit was exceeded.
50X
Internal Server Error
An error occurred with our API.
Last updated