Get aggregated ETF data bundle
GET
/api/v1/public/etf/:ticker/bundle25 credits / callAPI key required
Consolidated ETF data in one call. Returns a combined bundle of ETF profile, holdings, sector/country breakdowns, stock summary, performance metrics, news, analyst consensus, and comparable ETFs. Use the `include` query parameter to select which data types to fetch. If omitted, all types are included.
Parameters
Path
Company ticker symbol (1-5 letters, case-insensitive)
Query
Comma-separated list of data types to include. Available types: `profile`, `holdings`, `sectors`, `countries`, `stock-summary`, `performance`, `news`, `analyst`, `comparables`. Omit to include all.
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/etf/AAPL/bundle?include=profile%2Cdilution' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/etf/AAPL/bundle?include=profile%2Cdilutionexample · 200
{
"data": {
"ticker": "SPY",
"profile": {
"symbol": "SPY",
"expenseRatio": 0.09,
"aum": 782731173018,
"inceptionDate": "1993-01-22",
"description": "The State Street SPDR S&P 500 ETF Trust, or SPY, aims to replicate the total return, encompassing both price appreciation and dividends, of the S&P 500 Index, prior to its operating expenses. This underlying benchmark represents a broad cross-section of leading U.S. corporations, featuring companies across all eleven GICS industry sectors. Notably, SPY debuted in January 1993, making it the pioneering exchange-traded fund to be listed in the United States.",
"issuer": "SPDR",
"assetClass": "Equity",
"nav": 741.91,
"avgVolume": 73651172
},
"stock-summary": {
"quote": {
"ticker": "SPY",
"currentPrice": 754.83,
"change": 13.08,
"changePercent": 1.7634,
"high": 755.25,
"low": 751.76,
"yearHigh": 760.4,
"yearLow": 591.89,
"open": 751.85,
"previousClose": 741.75,
"timestamp": 1781553600,
"fetchedAt": "2026-06-16T15:23:45.232Z",
"preMarketPrice": 754.5275,
"preMarketChangePercent": -0.0401,
"afterHoursPrice": null,
"afterHoursChangePercent": null,
"volume": 0,
"marketCap": 0
},
"profile": {
"ticker": "SPY",
"marketCap": 758928726900,
"sharesOutstanding": 1005430000,
"shareClassSharesOutstanding": 1055782116,
"industry": "Asset Management - Global",
"sector": "Financial Services",
"name": "State Street SPDR S&P 500 ETF Trust",
"description": "The State Street SPDR S&P 500 ETF Trust, or SPY, aims to replicate the total return, encompassing both price appreciation and dividends, of the S&P 500 Index, prior to its operating expenses. This underlying benchmark represents a broad cross-section of leading U.S. corporations, featuring companies across all eleven GICS industry sectors. Notably, SPY debuted in January 1993, making it the pioneering exchange-traded fund to be listed in the United States.",
"ceo": null,
"website": "http://www.spdrs.com",
"country": "US",
"fullTimeEmployees": null,
"ipoDate": "1993-01-29",
"avgVolume": null,
"volume": null,
"priceAvg50": 724.78,
"priceAvg200": 686.84,
"eps": null,
"pe": null,
"beta": 1,
"isEtf": true,
"isFund": false,
"isActivelyTrading": true
},
"metrics": {
"volume30dAvg": 54214625,
"volume60dAvg": 51207770,
"volume90dAvg": 63309671,
"volatility30d": 0.142,
"liquidityScore": 5.3922,
"sma20": 745.86,
"sma50": 724.78,
"sma200": 686.84,
"highest60DayClose": null
},
"trendDirection": "Bullish"
},
"holdings": [
{
"asset": "NVDA",
"name": "NVIDIA CORP",
"sharesNumber": 298026770,
"weightPercentage": 7.84005113,
"marketValue": 61366524176,
"returns": {
"1D": 3.53818,
"5D": 5.43948,
"1M": -5.71188,
"3M": 15.9535,
"6M": 19.54198,
"YTD": 13.91421,
"1Y": 46.83116,
"3Y": 397.65753,
"5Y": 1092.86917,
"10Y": 17752.94118,
"MAX": 517857.23226
}
},
{
"asset": "AAPL",
"name": "APPLE INC",
"sharesNumber": 180055937,
"weightPercentage": 6.83504186,
"marketValue": 53500003330,
"returns": {
"1D": 1.81706,
"5D": 0.91924282,
"1M": -1.26903,
"3M": 17.24547,
"6M": 7.94217,
"YTD": 9.03406,
"1Y": 49.39018,
"3Y": 60.29634,
"5Y": 127.75259,
"10Y": 1115.33415,
"MAX": 230846.63031
}
},
{
"asset": "MSFT",
"name": "MICROSOFT CORP",
"sharesNumber": 91069946,
"weightPercentage": 4.56460702,
"marketValue": 35728602041,
"returns": {
"1D": 2.30844,
"5D": 1.15129,
"1M": -5.25218,
"3M": -0.04750594,
"6M": -16.08556,
"YTD": -17.34006,
"1Y": -16.56718,
"3Y": 16.77621,
"5Y": 55.31898,
"10Y": 693.33201,
"MAX": 411078.42486
}
}
],
"sectors": [
{
"sector": "Basic Materials",
"weightPercentage": 1.67
},
{
"sector": "Cash & Others",
"weightPercentage": 0.010000000000005116
},
{
"sector": "Communication Services",
"weightPercentage": 10.64
}
],
"meta": {
"requested": [
"profile",
"stock-summary",
"holdings"
],
"succeeded": [
"profile",
"stock-summary",
"holdings"
],
"failed": [],
"cachedCount": 4,
"fetchedCount": 0
}
}
}