> ## Documentation Index
> Fetch the complete documentation index at: https://moneykit.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Access Token Details

> Get details about the client and application associated with your `access_token`.

<div className="tailwind hidden">
  ```
  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"
    }
  }
  ```
</div>
