# ETFs types

The ETFs Types endpoint provides a concise list of ETF categories by market (e.g., Singapore, United States), including types like &quot;Equity Precious Metals&quot; and &quot;Large Blend.&quot; 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`
  Example value: `United States`


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



## Response

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

- `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"
}
```
