Verifies token validity and retrieves metadata. Returns active status, scope, expiration, and user information. Client authentication via authorization header or client credentials.
curl --request POST \
--url https://api.fluxer.app/v1/oauth2/introspect \
--header 'Content-Type: multipart/form-data' \
--form 'token=<string>' \
--form 'client_id=<string>' \
--form 'client_secret=<string>'{
"active": true,
"scope": "<string>",
"client_id": "<string>",
"username": "<string>",
"token_type": "<string>",
"exp": 1073741823,
"iat": 1073741823,
"sub": "<string>"
}Success
Whether the token is currently active
The space-separated list of scopes
The username of the token owner
The type of token
0 <= x <= 21474836470 <= x <= 2147483647curl --request POST \
--url https://api.fluxer.app/v1/oauth2/introspect \
--header 'Content-Type: multipart/form-data' \
--form 'token=<string>' \
--form 'client_id=<string>' \
--form 'client_secret=<string>'{
"active": true,
"scope": "<string>",
"client_id": "<string>",
"username": "<string>",
"token_type": "<string>",
"exp": 1073741823,
"iat": 1073741823,
"sub": "<string>"
}