# MFs families The mutual funds family endpoint provides a comprehensive list of MF families, which are groups of mutual funds managed by the same investment company. This data is useful for users looking to explore or compare different fund families, understand the range of investment options offered by each, and identify potential investment opportunities within specific fund families. **API credits cost:** `1` per request ## Parameters - `country` (string, optional) Filter by country name or alpha code, e.g., `United States` or `US` - `fund_family` (string, optional) Filter by investment company that manages the fund ## Response - `result` (map (key: string, value: array of string)) List of fund families by country - `status` (string) Response status ## Example Request ```bash curl "https://api.twelvedata.com/mutual_funds/family?apikey=demo" ``` ## Example Response ```json { "result": { "India": [ "Aberdeen Standard Fund Managers Limited", "Aditya Birla Sun Life AMC Ltd" ], "United States": [ "Aegon Asset Management UK PLC", "Ampega Investment GmbH", "Aviva SpA" ] }, "status": "ok" } ```