Skip to main content
POST
/
api
/
v1
/
oauth
/
introspect
Introspect token
curl --request POST \
  --url https://api.example.com/api/v1/oauth/introspect \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'token=<string>'
{
  "active": true,
  "client_id": "<string>",
  "exp": 123,
  "iat": 123,
  "scope": "<string>",
  "sub": "<string>",
  "token_type": "<string>"
}

Body

application/x-www-form-urlencoded

Token introspection request

token
string
required

The token to introspect

Response

Introspection response

Token introspection response as per RFC 7662

active
boolean
required
client_id
string | null
exp
integer<int64> | null
iat
integer<int64> | null
scope
string | null
sub
string | null
token_type
string | null