# MMFs directory (New)

The money market funds directory endpoint provides a list of money market funds, sorted in descending order by their total fund size. This endpoint is useful for retrieving an organized overview of available money market funds.

**API credits cost:** `1` per request

> **Note:** Basic, <a href="https://twelvedata.com/pricing">Grow</a>, and <a href="https://twelvedata.com/pricing">Pro</a> plans (individual) and <a href="https://twelvedata.com/pricing-business">Venture</a> plan (business) return up to 50 records. For complete data, upgrade to the <a href="https://twelvedata.com/pricing">Ultra</a> plan (individual), <a href="https://twelvedata.com/pricing-business">Enterprise</a> (business), or Custom plan (business).

## Parameters

- `symbol` (string, optional)
  Filter by symbol (ISIN or ticker)
  Example value: `IE00BK8M8M59`


- `format` (string, optional)
  The format of the response data
  Available values: `json`, `csv`
  Default value: `json`


- `delimiter` (string, optional)
  The separator used in the CSV response data
  Default value: `;`


- `page` (integer, optional)
  Page number
  Default value: `1`


- `outputsize` (integer, optional)
  Number of records in response
  Default value: `100`



## Response

- `data` (array of object)
  List of money market funds
  - `symbol` (string)
    Fund symbol (ISIN or ticker)
  - `name` (string)
    Fund name
  - `currency` (string)
    Currency in which the fund is denominated
  - `share_class` (string)
    Share class
  - `fund_family` (string)
    Investment company family that manages the fund
  - `fund_type` (string)
    Type of fund
  - `regulatory_structure` (string)
    Regulatory structure
  - `domicile` (string)
    Country of fund domicile (ISO 3166-1 alpha-2 code)
  - `issuing_company` (string)
    Company that issues the fund

- `count` (integer)
  Total number of matching funds

- `page` (integer)
  Current page number

- `page_size` (integer)
  Number of records per page

- `status` (string)
  Response status


## Example Request

```bash
curl "https://api.twelvedata.com/money_market_funds/list?apikey=demo"
```

## Example Response

```json
{
    "data": [
        {
            "symbol": "IE00BK8M8M59",
            "name": "BlackRock ICS Sterling Liquid Environmentally Aware Fund",
            "currency": "GBP",
            "share_class": "Premier Dis",
            "fund_family": "BlackRock ICS",
            "fund_type": "Short-Term Variable NAV",
            "regulatory_structure": "UCITS",
            "domicile": "IE",
            "issuing_company": "BlackRock Asset Management Ireland Limited"
        }
    ],
    "count": 168,
    "page": 1,
    "page_size": 100,
    "status": "ok"
}
```
