Skip to main content

The API is currently in beta testing and is not ready for public consumption yet.

Get in touch

Errors

Error Codes

CodeStatusDescription
MISSING_USER_AGENT400The request is missing a User-Agent header
INVALID_REQUEST400The request is not valid
NOT_FOUND404The resource was not found
NOT_AUTHORIZED401You need to provide credentials to access the resource
FORBIDDEN403You don't have permission to access the resource
SERVER_ERROR500An unknown error occurred on the server
RATE_LIMITED429Too many requests

Example JSON Response

If an error has occurred the API will return an error status code and a body like the following:

{
"error": "NOT_FOUND",
"status": 404,
"message": "The requested resource does not exist"
}