Skip to content

Error reference

Too many channels selected

You selected more channels than your plan can publish from.

Code
kept_accounts_over_limit
HTTP status
400
Category
bad-body
Severity
error
Retryable
No
Domain
accounts

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/kept_accounts_over_limit",
  "title": "Too many channels selected",
  "status": 400,
  "category": "bad-body",
  "code": "kept_accounts_over_limit",
  "detail": "You selected more channels than your plan can publish from.",
  "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 === 'kept_accounts_over_limit') {
    // You selected more channels than your plan can publish from.
  }
}