Error Reference

UNAUTHENTICATED

Authentication credentials are missing, invalid, or cannot be verified.

This error means the API could not authenticate your request.

Typical causes

  • Missing Authorization header
  • Invalid bearer token
  • Token format is malformed

How to fix

  1. Send Authorization: Bearer <token> on the request.
  2. Verify the token is current and copied correctly.
  3. Retry with a newly issued token if needed.

Example

{
  "errors": [
    {
      "message": "Invalid token",
      "code": "UNAUTHENTICATED",
      "documentation": "https://developers.rad.live/docs/errors/unauthenticated"
    }
  ]
}

On this page