GET
/
oauth
/
tokeninfo
OAuth2 Token Introspection
curl --request GET \
  --url {protocol}://{domain}/oauth/tokeninfo \
  --header 'Authorization: Bearer <token>'
{
  "active": true,
  "scope": "<string>",
  "client_id": "<string>",
  "exp": 123,
  "sub": "<string>"
}

Authorizations

Authorization
string
header
required

OAuth2 authorization code flow with PKCE support. Supports scopes: read, write, mcp, integration, oauth

Response

200
application/json

Token information

The response is of type object.