> ## 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 Links

> Fetches all links belonging to a user.

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

  ```
  {
    "links": {
      "mk_eqkWN34UEoa2NxyALG8pcV": {
        "link_id": "mk_eqkWN34UEoa2NxyALG8pcV",
        "institution_id": "chase",
        "institution_name": "Chase",
        "provider": "mx",
        "state": "connected",
        "last_synced_at": "2023-02-16T09:14:11",
        "tags": [
          "user_type:admin"
        ],
        "products": {
          "accounts": {
            "refreshed_at": "2023-02-16T09:14:11",
            "last_attempted_at": "2023-02-16T09:14:11"
          },
          "identity": {
            "refreshed_at": "2023-02-16T09:14:11",
            "last_attempted_at": "2023-02-16T09:14:11",
            "settings": {
              "required": true,
              "prefetch": false
            }
          }
        }
      }
    }
  }
  ```
</div>
