Plan limit reached
Your plan limit has been reached. Upgrade to add more.
- limit_reached
- 403
- forbidden
- error
- No
- billing
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/limit_reached",
"title": "Plan limit reached",
"status": 403,
"category": "forbidden",
"code": "limit_reached",
"detail": "Your plan limit has been reached. Upgrade to add more.",
"correlationId": "c-1f2e3d4c-…",
"severity": "error",
"action": "upgrade"
}Handle it in code
try {
await skedcast.posts.create(input);
} catch (err) {
if (err instanceof SkedcastApiError && err.code === 'limit_reached') {
// Your plan limit has been reached. Upgrade to add more.
}
}