Skip to content

Error reference

Something went wrong

An unexpected error occurred. Please try again or contact support.

Code
internal_error
HTTP status
500
Category
internal
Severity
error
Retryable
No
Domain
common

How to fix

If this keeps happening, contact support and include the reference id from the response.

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/internal_error",
  "title": "Something went wrong",
  "status": 500,
  "category": "internal",
  "code": "internal_error",
  "detail": "An unexpected error occurred. Please try again or contact support.",
  "correlationId": "c-1f2e3d4c-…",
  "severity": "error",
  "action": "contact-support"
}

Handle it in code

try {
  await skedcast.posts.create(input);
} catch (err) {
  if (err instanceof SkedcastApiError && err.code === 'internal_error') {
    // An unexpected error occurred. Please try again or contact support.
  }
}