latestSwagger 2.02026-08-12187723.0 MB

c4a12725cdb5

reference_data

ETFs

The ETFs endpoint provides a daily updated list of all available Exchange-Traded Funds. It returns an array containing detailed information about each ETF, including its symbol, name, and other relevant identifiers. This endpoint is useful for retrieving a comprehensive catalog of ETFs for portfolio management, investment tracking, or financial analysis.

get/etfs

Query parameters

symbolstring

The ticker symbol of an instrument for which data is requested

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

exchangestring

Filter by exchange name

mic_codestring

Filter by market identifier code (MIC) under ISO 10383 standard

countrystring

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

format'JSON' | 'CSV'

The format of the response data

delimiterstring

The separator used in the CSV response data

show_planboolean

Adds info on which plan symbol is available

include_delistedboolean

Include delisted identifiers

pageinteger

Page number of the results to fetch

outputsizeinteger

Determines the number of data points returned in the output

Response

countinteger required

Count

statusstring required

Response status

Example response

{
  "count": 100,
  "data": [
    {
      "symbol": "SPY",
      "name": "SPDR S&P 500 ETF Trust",
      "currency": "USD",
      "exchange": "NYSE",
      "mic_code": "ARCX",
      "country": "United States",
      "figi_code": "BBG000BDTF76",
      "cfi_code": "CECILU",
      "isin": "US78462F1030",
      "cusip": "037833100",
      "access": {
        "global": "Basic",
        "plan": "Basic",
        "plan_business": "Basic"
      }
    }
  ],
  "status": "ok"
}