Limit reached
You have reached a plan limit. Upgrade to continue.
- quota_exceeded
- 429
- rate-limit
- warn
- Yes
- 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/quota_exceeded",
"title": "Limit reached",
"status": 429,
"category": "rate-limit",
"code": "quota_exceeded",
"detail": "You have reached a plan limit. Upgrade to continue.",
"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 === 'quota_exceeded') {
// You have reached a plan limit. Upgrade to continue.
}
}