Error Reference

INTERNAL_SERVER_ERROR

An unexpected server-side failure occurred while processing the request.

This error is the fallback for unhandled failures.

Typical causes

  • Unhandled exceptions
  • Dependency failures not mapped to specific codes
  • Transient backend issues

How to fix

  1. Retry the request.
  2. Capture and report x-request-id to support.
  3. If persistent, check service status and logs.

Example

{
  "errors": [
    {
      "message": "Internal server error",
      "code": "INTERNAL_SERVER_ERROR",
      "documentation": "https://developers.rad.live/docs/errors/internal_server_error"
    }
  ]
}

On this page