免费只读JSON API
本站提供缓存数据库服务——从不作为上游数据商的实时代理。已启用 CORS,无需密钥,缓存约 2 分钟,设有最大行数上限。每条响应均附带数据来源说明及仅供研究使用的免责声明。
/api/v1/etfs
ETF directory (sort: aum, yield, er, ytd; filters: category, issuer)
curl "https://etfexplorer.com/api/v1/etfs?limit=50&sort=aum"
/api/v1/etf/VOO
Full profile: metadata + quote + performance + risk
curl "https://etfexplorer.com/api/v1/etf/VOO"
/api/v1/etf/VOO/holdings
Holdings with weights, shares, value and as-of date
curl "https://etfexplorer.com/api/v1/etf/VOO/holdings?limit=25"
/api/v1/etf/SCHD/distributions
Distribution history (ex/record/pay dates, amounts)
curl "https://etfexplorer.com/api/v1/etf/SCHD/distributions"
/api/v1/etf/VOO/history
Daily closes + dividend-adjusted closes
curl "https://etfexplorer.com/api/v1/etf/VOO/history?days=365"
/api/v1/quotes
Batch delayed quotes
curl "https://etfexplorer.com/api/v1/quotes?symbols=SPY,QQQ,VOO"
/api/v1/stock/NVDA/etfs
Reverse holdings: every ETF holding a stock
curl "https://etfexplorer.com/api/v1/stock/NVDA/etfs"
/api/v1/ticker
Ticker-bar feed: top 30 ETFs by AUM
curl "https://etfexplorer.com/api/v1/ticker"
/api/v1/search
Symbol/name search
curl "https://etfexplorer.com/api/v1/search?term=dividend"
响应结构
{
"data": [ … ],
"meta": {
"count": 25,
"as_of": "2026-08-14T18:00:00Z",
"attribution": "Market data: Financial Modeling Prep (delayed 15-20+ min). Derived analytics computed by ETF Explorer from stored series.",
"disclaimer": "Research/informational use only. Not investment advice. Verify against primary sources before acting."
}
}
合理使用:请保持只读且适度调用。API的设计初衷是让代理程序和电子表格无需抓取HTML页面。