Error Reference

TOKEN_EXPIRED

The provided token is no longer valid because it expired.

This error means the token passed validation format checks but is expired.

Typical causes

  • JWT exp claim is in the past
  • OAuth access token is no longer active

How to fix

  1. Refresh or reissue your token.
  2. Retry the request with the new token.

Example

{
  "errors": [
    {
      "message": "Invalid or expired JWT",
      "code": "TOKEN_EXPIRED",
      "documentation": "https://developers.rad.live/docs/errors/token_expired"
    }
  ]
}

On this page