Skip to main content

Introspect an access token

Introspect an OAuth 2.0 access token using an OAuth 2.0 client ID/secret pair.

Request Body
  • token string required
  • token_type_hint string

    Possible values: [access_token]

  • scope string

    List of OAuth2 scopes, delimited with spaces.

Responses

OK


Schema
  • active boolean

    Whether the token is active. False for invalid and expired tokens, and tokens that are not granted the scopes specified in the request.

  • client_id string

    The client ID used to create this token. Only included if active is true.

  • exp integer

    The expiration timestamp of the token. Only included if active is true.

  • iat integer

    The timestamp when the token was issued. Only included if active is true.

  • scope string

    The scope granted to the token. Only included if active is true.