Skip to main content
GET
/
token
/
validate
cURL
curl --request GET \
  --url https://{portalApiUrl}/token/validate \
  --header 'Authorization: <api-key>'
{
  "status": true,
  "result": {
    "message": "<string>"
  },
  "user_data": {
    "apikey": "<string>",
    "org_id": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.illuxi.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authentication token obtained from POST /token

Response

Token is valid

status
boolean

Indicates if the token is valid

result
object

Additional information about the token validation

user_data
object