latestSwagger 2.02026-08-12187723.0 MB

c4a12725cdb5

etfs

ETFs directory

The ETFs directory endpoint provides a daily updated list of exchange-traded funds, sorted by total assets in descending order. This endpoint is useful for retrieving comprehensive ETF data, including fund names and asset values, to assist users in quickly identifying the ETFs available.

get/etfs/list

Query parameters

symbolstring

Filter by symbol

figistring

Filter by financial instrument global identifier (FIGI). This parameter is available on the <a href="https://twelvedata.com/pricing">Ultra</a> plan (individual) and the <a href="https://twelvedata.com/pricing-business">Enterprise</a> plan (business) and above.

isinstring

Filter by international securities identification number (ISIN). ISIN access is activating in the <a href="https://twelvedata.com/account/add-ons">Data add-ons</a> section

cusipstring

The CUSIP of an instrument for which data is requested. CUSIP access is activating in the <a href="https://twelvedata.com/account/add-ons">Data add-ons</a> section

cikstring

The CIK of an instrument for which data is requested

countrystring

Filter by country name or alpha code, e.g., United States or US

fund_familystring

Filter by investment company that manages the fund

fund_typestring

Filter by the type of fund

format'JSON' | 'CSV'

The format of the response data

delimiterstring

The separator used in the CSV response data

dpinteger

Number of decimal places for floating values

pageinteger

Page number

outputsizeinteger

Number of records in response

Response

statusstring required

Status of the response

Example response

{
  "result": {
    "count": 1000,
    "list": [
      {
        "symbol": "IVV",
        "name": "iShares Core S&P 500 ETF",
        "country": "United States",
        "mic_code": "XNAS",
        "fund_family": "iShares",
        "fund_type": "Large Blend"
      }
    ]
  },
  "status": "ok"
}