Rate Limiting
Rate limiting in the AniList GraphQL API.
HTTP/1.1 200 OK
... other headers here ...
X-RateLimit-Limit: 90
X-RateLimit-Remaining: 59HTTP/1.1 429 Too Many Requests
... other headers here ...
Retry-After: 30
X-RateLimit-Limit: 90
X-RateLimit-Remaining: 0
X-RateLimit-Reset: 1502035959{
"data": null,
"errors": [
{
"message": "Too Many Requests.",
"status": 429
}
]
}Burst Limiting
Rate Limit Raise
Last updated