quota_exceeded
429 Too Many Requests The account's API quota for this scope is exhausted.
When you get it
The account's API quota for this scope is exhausted. It is always answered with HTTP 429 - one code means one status, so a client may key its handling on either.
Fields it carries
Inside each errors[] entry, beside pointer:
limit- The cap this operation enforces.
remaining- How much of the quota is left.
resetAt- When the quota window rolls over, Unix seconds.
A field is omitted when the server genuinely does not know it - an absent member is never the same as an empty one.
How to fix it
Slow down. Wait for the Retry-After / RateLimit-Reset the response carries, then retry - do not spin.
Shape
{
"type": "https://api2.host-tracker.com/problems/quota-exceeded",
"title": "The account's API quota for this scope is exhausted.",
"status": 429,
"code": "quota_exceeded",
"errors": [
{ "limit": …, "remaining": …, "resetAt": … }
]
}