Using Your API Token
Include your API token in thetoken header for all authenticated requests:
Getting Your API Token
UnleashX Portal
- Sign in to the UnleashX portal at
https://www.tryunleashx.com/login. - Open Profile & Settings → API Key (or API Key under your profile).
- Click Generate API Token (or Create API Key). Copy the generated token value.
- Store the token securely. Treat it like a password — do not share or check it into source control.
- Tokens generated in the portal are persistent and do not expire by default (rotate them if compromised).
- Use the
tokenheader when calling APIs (some endpoints also acceptapi_access_token).
token header) for subsequent API calls.
Verify Token API
Use this API to validate an API token. It is typically used by clients or middleware to ensure the token is valid before making protected requests.- Endpoint:
POST /api/v1/global/verify - Headers:
token(string, required) — the API token to validate - Content-Type:
application/json - Description: Validates the provided API token. Returns
200 OKwhen the token is valid; returns401 Unauthorizedwhen the token is invalid or expired.

