| Error Code | Meaning |
|---|---|
| 400 | Bad Request — The request was unacceptable, often due to missing a required parameter. |
| 401 | Unauthorized — No valid API key provided. |
| 403 | Forbidden — The API key doesn’t have permissions to perform the request, or your quota is used and you need to upgrade. |
| 404 | Not Found — The specified resource could not be found. |
| 405 | Method Not Allowed — You tried to access a resource with an invalid method. |
| 429 | Too Many Requests — See rate limits |
| 500 | Internal Server Error — We had a problem with our server. Try again later. |
| 503 | Service Unavailable — We’re temporarily offline for maintenance. Please try again later. |
Response signature
Error responses are returned with a JSON object with the following signature:The error code.
BAD_REQUEST, UNAUTHORIZED, FORBIDDEN, NOT_FOUND,
METHOD_NOT_ALLOWED, TOO_MANY_REQUESTS, INTERNAL_SERVER_ERROR,
SERVICE_UNAVAILABLEA human-readable message providing more details about the error.
An array of issues that caused the error. For example input fields that are
invalid.