What is the proper HTTP status for "too many connections?"

429: Too Many Requests

seems to be the one.


If the user is exceeding a user specific cap, then 429 "Too Many Requests".

But, if the user is within their individual cap (or none exists), but the server is buckling under the aggregate across all users 509 "Bandwidth Limit Exceeded" (this one is common convention, but not defined this way by an RFC).

The difference is that in the first case we have a naughty client, so 4xx series error. In the latter case, the server oversubscribed its capacity and admits defeat, so 5xx series error.