# Summary The ETFs summary endpoint provides a concise overview of global Exchange-Traded Funds. It returns key data points such as ETF names, symbols, and current market values, enabling users to quickly assess the performance and status of various international ETFs. This summary is ideal for users who need a snapshot of the global ETF landscape without delving into detailed analysis. **API credits cost:** `200` per request > **Note:** This API endpoint is available starting with the [Ultra](https://twelvedata.com/pricing) plan. ## Parameters - `symbol` (string, optional, see notes) Symbol ticker of etf - `figi` (string, optional, see notes) Filter by financial instrument global identifier (FIGI). This request parameter is available starting with the Ultra plan - `isin` (string, optional, see notes) Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section - `cusip` (string, optional, see notes) The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section - `country` (string, optional) Filter by country name or alpha code, e.g., `United States` or `US` - `dp` (integer, optional) Number of decimal places for floating values. Accepts value in range [0,11] **Notes:** - At least one of the following parameters is required: `symbol`, `figi`, `isin`, `cusip`. ## Response - `etf` (object) Etf information - `summary` (object) A brief summary of a ETF - `symbol` (string) All available fund types segmented by country - `name` (string) Fund name - `fund_family` (string) Investment company that manages the fund - `fund_type` (string) Type of the fund - `currency` (string) Currency of fund price - `share_class_inception_date` (string) The date from which the fund started operations and the returns are calculated - `ytd_return` (number) Percentage of profit of the fund since the first trading day of the current calendar year - `expense_ratio_net` (number) Percentage of ETF assets steered toward a fund's operating expenses and fund management fees - `yield` (number) Income returned to its investors through interest and dividends generated by the fund's investments - `nav` (number) Net Asset Value: fund value minus liabilities - `last_price` (number) Last price of the fund - `turnover_rate` (number) Percentage rate at which ETF replaces its holdings on investment every year - `net_assets` (integer) Total assets of a fund minus its total liabilities - `overview` (string) Description of the fund - `status` (string) Status of the response ## Example Request ```bash curl "https://api.twelvedata.com/etfs/world/summary?symbol=IVV&apikey=demo" ``` ## Example Response ```json { "etf": { "summary": { "symbol": "IVV", "name": "iShares Core S&P 500 ETF", "fund_family": "iShares", "fund_type": "Large Blend", "currency": "USD", "share_class_inception_date": "2000-11-13", "ytd_return": -0.0537, "expense_ratio_net": -0.004, "yield": 0.0133, "nav": 413.24, "last_price": 413.24, "turnover_rate": 0.04, "net_assets": 753409982464, "overview": "The investment seeks to track the performance of the Standard & Poor's 500..." } }, "status": "ok" } ```