The Ultimate Guide to HTTP Status Codes (100–599)
A complete reference guide to all HTTP status codes from 100 to 599, with explanations and common use cases.
Feb 28, 2026
4xx Client Error
The 425 (Too Early) status code indicates that the server is unwilling to risk processing a request that might be replayed. This is related to the Early Data mechanism in TLS 1.3 where a client can send data immediately after the handshake without waiting for the server to confirm receipt.
When your server accepts TLS 1.3 early data, return 425 Too Early for non-idempotent requests like payment processing or resource creation. The client should wait for the handshake to complete before retrying, ensuring the request is not a replay.
# Nginx - rejecting early data for non-idempotent endpoints
location /api/payments {
proxy_set_header Early-Data $ssl_early_data;
if ($ssl_early_data = 1) {
return 425;
}
proxy_pass http://backend;
}