Understand how our API handles errors
2xx
range indicate success, codes in the 4xx
range indicate an error that failed given the information provided (e.g., a required parameter was omitted), and codes in the 5xx
range indicate an error with our servers.
200 OK
: Everything worked as expected.400 Bad Request
: Request is not acceptable, often due to missing a required parameter.401 Unauthorized
: No valid API key was provided.429 Too Many Requests
: You’re hitting the rate limit.500 Internal Server Error
: We had a problem with our server. Try again later.