Skip to content

Error reference

Platform capacity reached

SkedCast’s shared capacity for this platform is temporarily exhausted — this is not caused by your usage. Please retry after the indicated wait.

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

How to fix

Wait a moment and try the request 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/platform_capacity_exhausted",
  "title": "Platform capacity reached",
  "status": 429,
  "category": "rate-limit",
  "code": "platform_capacity_exhausted",
  "detail": "SkedCast’s shared capacity for this platform is temporarily exhausted — this is not caused by your usage. Please retry after the indicated wait.",
  "correlationId": "c-1f2e3d4c-…",
  "severity": "warn",
  "action": "retry"
}

Handle it in code

try {
  await skedcast.posts.create(input);
} catch (err) {
  if (err instanceof SkedcastApiError && err.code === 'platform_capacity_exhausted') {
    // SkedCast’s shared capacity for this platform is temporarily exhausted — this is not caused by your usage. Please retry after the indicated wait.
  }
}