Public APIError codes
Public APIError codes
Plan quota exhausted (quota_exhausted)
What the GetItDone API problem code quota_exhausted (HTTP 429) means, what causes it, and how to fix it.
- HTTP status: 429
- Problem type URI: https://nowgetitdone.com/docs/api/problems/quota-exhausted
What it means
The workspace has used its entire API-call allowance for the current billing period — an ALLOWANCE gate, distinct from the short-term burst throttle.
Likely causes
- The plan’s calls-per-period quota is fully consumed.
How to fix
- Wait for the billing period to reset, or upgrade to a plan with a larger allowance.
- Reduce call volume — batch reads and cache where you can.
Example problem+json
{
"type": "https://nowgetitdone.com/docs/api/problems/quota-exhausted",
"title": "Plan quota exhausted",
"status": 429,
"code": "quota_exhausted",
"request_id": "req_a1b2c3d4"
}Related
Rate limit exceeded (rate_limited)
What the GetItDone API problem code rate_limited (HTTP 429) means, what causes it, and how to fix it.
Idempotency-Key header required (idempotency_key_missing)
What the GetItDone API problem code idempotency_key_missing (HTTP 400) means, what causes it, and how to fix it.