> ## 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 User Accounts

> Fetches all accounts belonging to a user.

<div className="tailwind hidden">
  ```
  curl -i -X GET \
    'http://localhost:8080/users/{id}/accounts?account_id=string&institution_id=string' \
    -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
    -H 'moneykit-version: 2023-02-18'
  ```

  ```
  {
    "links": {
      "link_id1": {
        "accounts": [
          {
            "account_id": "a3ba443a-257c-490e-8242-03a84789d39f",
            "account_type": "checking",
            "name": "Premier Checking",
            "account_mask": "3748",
            "balances": {
              "currency": "USD",
              "available": 340.12,
              "current": 445.89,
              "limit": 500
            }
          }
        ],
        "last_synced_at": "2023-02-16T09:14:11"
      },
      "link_id2": {
        "accounts": [
          {
            "account_id": "a3ba443a-257c-490e-8242-03a84789d39f",
            "account_type": "checking",
            "name": "Premier Checking",
            "account_mask": "3748",
            "balances": {
              "currency": "USD",
              "available": 340.12,
              "current": 445.89,
              "limit": 500
            }
          }
        ],
        "last_synced_at": "2023-02-16T09:14:11"
      }
    }
  }
  ```
</div>
