GET
/
auth
/
introspect
/auth/introspect
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"
  }
}
curl -i -X GET \
  http://localhost:8080/auth/introspect \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'moneykit-version: 2023-02-18'
{
  "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"
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

moneykit-version
string
default:2023-02-18

Response

200
application/json

Successful Response

MoneyKit API client for an application.