cURL
curl --request GET \ --url http://localhost:8080/auth/introspect \ --header 'Authorization: Bearer <token>'
{ "client_id": "live_5c739a369515e10fc9e0", "client_name": "My App (Prod)", "scope": "link_session:create link:data:read link:data:refresh institutions:read", "app": { "id": "3d18cdd1-fa96-4423-b781-bd5be036830e", "app_name": "My App" } }
Get details about the client and application associated with your access_token.
access_token
curl -i -X GET \ http://localhost:8080/auth/introspect \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \ -H 'moneykit-version: 2023-02-18'
The access token received from the authorization server in the OAuth 2.0 flow.
Successful Response
MoneyKit API client for an application.
Was this page helpful?