If you make a bad request we'll let you know by returning a relevant HTTP status code along with more details in the body.
# | Status code | Message |
---|---|---|
1 | 200 | OK |
2 | 401 | Unauthenticated |
3 | 404 | No questions found |
4 | 429 | Too Many Requests |
If you don't append your API key correctly, or your API key is invalid, you will receive a 401 - Unauthorized HTTP error:
{
"error": "Unauthenticated"
}
You made too many requests within a window of time and have been rate limited:
{
"error": "Too Many Requests"
}
{info} You can not make more than 180 requests per minute