# ETFs types The ETFs Types endpoint provides a concise list of ETF categories by market (e.g., Singapore, United States), including types like "Equity Precious Metals" and "Large Blend." It supports targeted investment research and portfolio diversification. **API credits cost:** `1` per request ## Parameters - `country` (string, optional) Filter by country name or alpha code, e.g., `United States` or `US` - `fund_type` (string, optional) Filter by the type of fund ## Response - `result` (map (key: string, value: array of string)) List of ETFs by market - `status` (string) Status of the response ## Example Request ```bash curl "https://api.twelvedata.com/etfs/type?apikey=demo" ``` ## Example Response ```json { "result": { "Singapore": [ "Property - Indirect Asia", "Sector Equity Water" ], "United States": [ "Asia-Pacific ex-Japan Equity", "EUR Flexible Allocation - Global" ] }, "status": "ok" } ```