429 Too Many Requests
The HTTP 429 Too Many Requests
response status code indicates the user has sent too many requests in a given amount of time ("rate limiting").
A Retry-After
header might be included to this response indicating how long to wait before making a new request.
Status
http
429 Too Many Requests
Example
http
HTTP/1.1 429 Too Many Requests
Content-Type: text/html
Retry-After: 3600
Specifications
Specification |
---|
RFC 6585 # section-4 |
See also
Retry-After
- HTTP Status Code Definitions
- Python solution: How to avoid HTTP error 429 python