Methods
Authenticate Access Token (Local)
Authenticate a Connected App access token.
Examine and introspect an access token locally. All standard and custom claims will be returned. No network calls are made when invoking this API method. An error will be thrown if the token is not active. This method supports only access tokens. If anDocumentation Index
Fetch the complete documentation index at: https://stytch.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
authorization_check object is passed in, this method will also check if the token contains scopes that are authorized to perform the specified action on the resource_id in the specified Organization.
Body
The token to introspect.
Response
The scopes granted to the token.
The type of the token. Possible values are
access_token and refresh_token.The expiration time of the token, expressed as a Unix timestamp.
The time at which the token was issued, expressed as a Unix timestamp.
The subject of the token. This is a unique identifier for the user.
The issuer of the token. This is the domain of your project, e.g. https://$ by default, or stytch.com/PROJECT_ID if the token was retrieved using the stytch.com domain. See the Custom Domain guide for more information.
The audience (project_id) that the token is intended for. Additional custom audiences can be defined for the token by setting the
access_token_custom_audience parameter on the client object.