Response · Response header
Retry-After
How long the client should wait before retrying.
What is Retry-After?
Sent with 429 Too Many Requests, 503 Service Unavailable, or some 3xx responses to indicate when the client should retry. Value is either seconds or an HTTP date.
Typical usage
Set on rate-limit and maintenance responses.
Examples
Retry after 30 seconds
Retry-After: 30Retry after a specific date
Retry-After: Wed, 21 Oct 2025 07:28:00 GMTSpecification
RFC 9110 §10.2.3
Frequently asked questions
What is the Retry-After HTTP header?
Sent with 429 Too Many Requests, 503 Service Unavailable, or some 3xx responses to indicate when the client should retry. Value is either seconds or an HTTP date.
Is Retry-After a request or response header?
Retry-After is a response header — the server sends it to the client. Set on rate-limit and maintenance responses.
What does a Retry-After header look like?
A typical Retry-After header looks like: Retry-After: 30 (Retry after 30 seconds).