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

# List Institutions

> Fetches a list of institutions, optionally filtered by name. Results are paginated.

<div className="tailwind hidden">
  ```
  curl -i -X GET \
    'http://localhost:8080/institutions?name=string&featured=false&cursor=string&limit=50' \
    -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
    -H 'moneykit-version: 2023-02-18'
  ```

  ```
  {
    "institutions": [
      {
        "institution_id": "chase",
        "institution_id_aliases": [
          "bf6856b2-0460-4e1e-b837-8dd9c1338bc1",
          "ins_56"
        ],
        "name": "Chase",
        "country": "US",
        "domain": "chase.com",
        "color": "#0A89FF",
        "color_dark": "#0A89FF",
        "is_featured": true
      }
    ],
    "cursors": {
      "next": "c2FtcGxlIGN1cnNvcg=="
    }
  }
  ```
</div>
