Zitadel Preview Docs

Introspect a token

POST
/auth/introspect
AuthorizationBearer <token>

In: header

Request Body

application/x-www-form-urlencoded

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/auth/introspect" \  -H "Content-Type: application/x-www-form-urlencoded" \  -d 'token=string'
{  "active": true,  "aud": "string",  "client_id": "string",  "exp": 0,  "iat": 0,  "iss": "string",  "jti": "string",  "nbf": 0,  "scope": "string",  "sub": "string",  "token_type": "string",  "username": "string"}
{  "code": "string",  "message": "string",  "details": {}}
{  "code": "string",  "message": "string",  "details": {}}