API ReferenceApplications
POST
/oauth2/v1/introspect

Request Body

application/json

token?string
token_type_hint?string
ssoAppId?string
client_id?string

Client credentials for the caller (the protected resource). RFC 7662 requires client authentication; credentials may arrive here in the body (client_secret_post) or via the Authorization Basic header (client_secret_basic, extracted by the OIDC gateway middleware like the token endpoint).

client_secret?string

OIDC token introspection endpoint (RFC 7662)

curl -X POST "https://api.descope.com/oauth2/v1/introspect" \  -H "Content-Type: application/json" \  -d '{}'
{  "result": {}}
export interface Response {/** * RFC 7662 introspection response, flattened to the top-level JSON body via response_body="result". */result?: {}}
Was this helpful?