GET/etf/list
Auth
headers: { 'Authorization': 'Replace with your API token' }
Examples
fetch('https://api.gurufocus.com/data/etf/list', { method: 'GET', headers: { 'Authorization': 'Replace with your API token' }})
Responses
Successful response. The exact payload fields depend on this endpoint.
Example Body (Field Reference)
{ "data": [ { "symbol": "IPB", "exchange": "NYSE", "company": "Merrill Lynch & Co. Inc. 6.0518% Index Plus Trust Certificates Series 2003-1", "stockid": "US00KK", "asset_class": "Unknown", "style_box": "Unknown" }, { "symbol": "AADR", "exchange": "NAS", "company": "ADVISORSHARES TRUS", "stockid": "US00KU", "asset_class": "Unknown", "style_box": "Large Core" } ], "page": 1, "total": 1000}
Introduction
Return the list of ETFs
Response Reference
| Display Name | Field Name | Type |
|---|---|---|
| Symbol | symbol | string |
| Exchange | exchange | string |
| Company | company | string |
| Stockid | stockid | string |
| Asset Class | asset_class | string (Unknow if not available) |
| Style Box | style_box | string (Unknow if not available) |