Skip to content

Error reference

Quota used up

Your workspace has used its posting quota for this platform for the current window. Wait for the window to reset, reduce volume, or upgrade your plan.

Code
tenant_quota_exceeded
HTTP status
429
Category
rate-limit
Severity
warn
Retryable
Yes
Domain
quota

How to fix

Upgrade your plan to raise this limit, then try again.

Example response

Every error is returned as application/problem+json (RFC 9457). The detail is the specific, actionable message; the code is stable and safe to branch on.

{
  "type": "https://skedcast.com/errors/tenant_quota_exceeded",
  "title": "Quota used up",
  "status": 429,
  "category": "rate-limit",
  "code": "tenant_quota_exceeded",
  "detail": "Your workspace has used its posting quota for this platform for the current window. Wait for the window to reset, reduce volume, or upgrade your plan.",
  "correlationId": "c-1f2e3d4c-…",
  "severity": "warn",
  "action": "upgrade"
}

Handle it in code

try {
  await skedcast.posts.create(input);
} catch (err) {
  if (err instanceof SkedcastApiError && err.code === 'tenant_quota_exceeded') {
    // Your workspace has used its posting quota for this platform for the current window. Wait for the window to reset, reduce volume, or upgrade your plan.
  }
}