# MFs types

This endpoint provides detailed information on various types of mutual funds, such as equity, bond, and balanced funds, allowing users to understand the different investment options available.

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

## Parameters

- `country` (string, optional)
  Filter by country name or alpha code, e.g., `United States` or `US`
  Example value: `United States`


- `fund_type` (string, optional)
  Filter by the type of fund
  Example value: `Jackson National`



## Response

- `result` (map (key: string, value: array of string))
  List of fund types by country

- `status` (string)
  Response status


## Example Request

```bash
curl "https://api.twelvedata.com/mutual_funds/type?apikey=demo"
```

## Example Response

```json
{
    "result": {
        "Singapore": [
            "Property - Indirect Asia",
            "Sector Equity Water",
            "SGD Bond",
            "Singapore Equity",
            "Taiwan Large-Cap Equity"
        ],
        "United States": [
            "Asia-Pacific ex-Japan Equity",
            "EUR Flexible Allocation - Global",
            "Euro Short Bond PP",
            "Large Blend",
            "Other Allocation"
        ]
    },
    "status": "ok"
}
```
