Limits are tracked per client (by IP) over a rolling 60-second window.
Exceeding the limit
A throttled request receives:Retry-After header — treat a 429
as “wait at least a few seconds,” particularly on the stricter auth bucket, which is intentionally
tight to slow down credential-stuffing and OTP brute-forcing.
Timeouts
Independent of rate limiting, every request through the gateway has a 10 second server-side timeout. A request that doesn’t complete in time gets a408 Request Timeout ({"success": false, "statusCode": 408, "message": "Request timed out"}) rather than hanging indefinitely —
design clients to handle this the same way as any other transient failure.