Skip to main content
Access token introspection allows your integration to verify whether an OAuth 2.0 token is currently valid and retrieve server-authoritative metadata about it. Introspection is intended for debugging, validation, and internal decision-making. Integrations must not rely on token contents locally, as tokens remain opaque outside of this endpoint. See the Tokens Overview for guidance on token handling expectations.

When to Use Introspection

Use token introspection when you need to:
  • Confirm whether a token is still active
  • Debug authentication or authorisation failures
  • Verify scopes or audience during development or support workflows
Do not use introspection as a replacement for normal token lifecycle handling (expiry tracking and refresh).

Token Introspection Endpoint

Authentication Requirements

The introspection endpoint requires client authentication using HTTP Basic Authentication:
  • client_id as the username
  • client_secret as the password
Only the client that obtained the token may introspect it.

Making an Introspection Request

Send an HTTP POST request with application/x-www-form-urlencoded parameters:

Introspection Response

The response is a JSON object containing token metadata.
Introspection reflects current server state. A token may become inactive at any time due to revocation, expiry, or security events.

Example Request

Example Response