Error Reference

INVALID_INPUT

The request payload or parameter value is invalid.

This error means the API rejected your input shape or value.

Typical causes

  • Invalid parameter format
  • State token or identifier format issues
  • Request body violates endpoint constraints

How to fix

  1. Validate request data before sending.
  2. Check endpoint-specific field format rules.
  3. Retry after correcting invalid values.

Example

{
  "errors": [
    {
      "message": "Invalid or expired state",
      "code": "INVALID_INPUT",
      "field": "state",
      "documentation": "https://developers.rad.live/docs/errors/invalid_input"
    }
  ]
}

On this page