429
⚠️ Client Error RFC 6585
Too Many Requests
The user has sent too many requests in a given amount of time.
Common Use
Rate limiting response. APIs return this when quota is exceeded. May include Retry-After header indicating when to retry.
API Endpoint
https://codes.uncodigo.com/http/429 Example with curl
curl -i https://codes.uncodigo.com/http/429 Try It
GET /http/429 Click "Send Request" to see the response...
Example
Request
GET /api/data HTTP/1.1 Response
HTTP/1.1 429 Too Many Requests
Retry-After: 3600
{"error": "Quota exceeded"} Related Headers
Retry-After Seconds to wait before retrying
Retry-After: 60