# ETFs families Retrieve a comprehensive list of exchange-traded fund (ETF) families, providing users with detailed information on various ETF groups available in the market. This endpoint is ideal for users looking to explore different ETF categories, compare offerings, or integrate ETF family data into their financial applications. **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 ETFs by country - `status` (string) Status of the response ## Example Request ```bash curl "https://api.twelvedata.com/etfs/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" } ```