plaid
Get metadata about an OAuth token
/oauth/introspect returns metadata about an access token or refresh token.
Note: This endpoint supports Content-Type: application/x-www-form-urlencoded as well as JSON. The fields for the form are equivalent to the fields for JSON and conform to the OAuth 2.0 specification.
post/oauth/introspect
Request body
Response
OK
Example response
{
"scope": "user:read user:write exchange",
"exp": 1670000000,
"iat": 1670000000,
"sub": "68028ce48d2b0dec68747f6c",
"aud": "https://production.plaid.com",
"iss": "https://production.plaid.com",
"token_type": "Bearer",
"user_id": "wz666MBjYWTp2PDzzggYhM6oWWmBb"
}