Common Error Statuses

400 Bad Request: The request was invalid or cannot be served. Check for syntax errors, or missing parameters.

401 Unauthorized: Authentication has failed, or has not been provided. Ensure that your API key is correct and included in your request.

404 Not Found: Requested resource was not found.

409 Conflict: Conflict has occured during processing the request.

429 Too Many Requests: Request limit rate is reached.

Error Response Format: Our API returns errors in the following format:

{
    "errors": [
        {
            "message": "[Error Message]"
        }
    ]
}