Daily ETF Holdings: Six File Formats, One API
One daily ETF holdings API across six issuer formats (csv, xlsx, xls, json, html, pdf): 4,900+ funds, point-in-time history, fresher than N-PORT.

If you want to know what an ETF holds today, there are two very different answers. One is the fund's quarterly SEC filing, structured and authoritative but as much as a few months stale. The other is the full holdings file the issuer posts on its own website every single morning, current to the prior close but published in whatever format that issuer happened to pick. This post is about the second answer: how we turned a zoo of csv, xlsx, xls, json, html, and pdf files from hundreds of issuer sites into a single daily ETF holdings API, what it covers so far, why the count keeps climbing, and how the endpoint now keeps a rolling month of snapshot history so you can ask for holdings as of a specific day.
Every number in this post is from the live StockFit production API on 2026-08-16. Coverage is a moving target by design, so treat the figures as a floor: the authoritative current list is always the supported-funds endpoint.
Why daily ETF holdings beat quarterly N-PORT
Registered funds report their portfolios to the SEC on Form N-PORT. They file it monthly, but the SEC only makes the quarter-end month public, and that disclosure lands roughly 60 days after the quarter closes. The practical effect is that the public N-PORT picture of a fund is between one and four months old depending on when you look. For a slow index fund that barely matters. For an active ETF that rotates its book, a four-month-old holdings list is a different portfolio. N-PORT is the right tool for point-in-time history and for funds that do not publish anything else, and it backs our quarterly fund holdings endpoint. It is the wrong tool for "what does this ETF own right now."
There is a fresher source, and it exists because of a rule. When the SEC adopted the ETF Rule (Rule 6c-11) in 2019, transparent exchange-traded funds were required to post their full portfolio holdings on a public website every business day. That daily file is the same composition data market makers use to assemble the creation and redemption basket, so it is complete: every position, the share or par quantity, the market value, and the weight. The issuers comply by dropping a file on their own site each morning. The data is excellent. The delivery is chaos.
For background on where N-PORT sits in the broader filing taxonomy, and why a fund's 10-K equivalent is its N-CSR rather than its holdings report, see our field guide to SEC forms. And because matching a daily file back to the right fund means resolving a ticker to a series in the first place, the CIK-to-fund-ticker problem is a prerequisite we had to solve before any of this worked. The full text of the ETF Rule is on sec.gov.
Every issuer publishes holdings differently
There is no standard for the daily holdings file. The ETF Rule says publish the holdings; it does not say how. So each issuer made its own choice, and over years of building this we have had to read all of them. ARK posts a clean csv. SSGA and the SPDR lineup post xlsx workbooks with a preamble and a header buried on row five. Vanguard serves a json document behind its product page that needs a referer header. Schwab and several others server-render an html table, sometimes paginated a hundred securities at a time. A handful of issuers still publish a legacy binary xls (the old BIFF format that most spreadsheet libraries silently load as zero worksheets). And a stubborn few only ever expose a pdf.
We deliberately did not write a bespoke scraper per fund. A new fund is onboarded by writing a small configuration (the source URL, the format, and a mapping from our standard fields to that file's column headers or json keys), not by shipping code. That keeps roughly five thousand funds maintainable by one person. The hard parts are rarely the parsing: they are the access tricks. Some issuers serve a different file to a browser user-agent than to a default client. Some embed a monthly-rotating token in the URL with no stable alias, so the real file has to be discovered through a documents API first. Several 403 a curl request on a TLS fingerprint but return 200 to a normal fetch, which means a "bot wall" is often a false alarm worth checking before giving up. And a few issuers sit behind JavaScript challenges or adaptive bot scores that no plain HTTP client passes at all; for those the fetcher drives a real Chromium navigation and captures the file the page downloads. None of that leaks into the response. What comes out the other side is one shape.
Coverage so far, and why it grows daily
As of 2026-08-16, the daily holdings endpoint covers 4,902 funds drawn from 391 distinct issuer sites. That is more than four out of five US-listed ETFs. The chart below is the distribution of those funds by the format their issuer publishes. Csv leads at 40 percent, but no single format is a majority: a real daily holdings feed has to handle all six, which is the whole engineering point.
The coverage is lumpy by issuer, and that lumpiness is good news. Because onboarding is config-driven and issuers reuse one format across their entire shelf, adding a single issuer's format usually unlocks dozens of its funds at once. iShares, First Trust, Invesco, and SPDR alone account for over eleven hundred of the covered funds.
"Grows daily" means two different things here, and both are true. First, the holdings data itself refreshes every day: a self-scheduling job re-fetches each supported fund's file, so the value you read is the issuer's most recent posting, not a weekly snapshot. Second, the breadth of coverage widens continuously as we onboard more issuers and more of their funds. That is why the figures in this post are a floor and the supported-funds list is the source of truth. If a fund you need is not covered yet, it is usually a config away rather than a capability away.
The unified response: holdings as JSON
Whatever the source format, the output is the same JSON. One call, a ticker, optional pagination. Here is the top of ARK Innovation ETF, an active fund that publishes a csv, returned by /api/fund/holdings/daily:
curl -H "Authorization: Bearer $TOKEN" \
"https://api.stockfit.io/v1/api/fund/holdings/daily?symbol=ARKK&pageSize=50"{
"reportDate": "2026-08-14",
"totalResults": 47,
"data": [
{ "name": "TESLA INC", "ticker": "TSLA", "cusip": "88160R101",
"balance": 1725907, "units": "NS", "currency": "USD",
"valueUsd": 586739343.72, "pctVal": 9.16 },
{ "name": "SPACE EXPLORATION TECHN-CL A", "ticker": "SPCX", "cusip": "84615Q103",
"balance": 2710335, "units": "NS", "currency": "USD",
"valueUsd": 382943232.15, "pctVal": 5.98 },
{ "name": "TEMPUS AI INC-CL A", "ticker": "TEM", "cusip": "88023B103",
"balance": 6145647, "units": "NS", "currency": "USD",
"valueUsd": 333647175.63, "pctVal": 5.21 }
]
}The reportDate is the as-of date the issuer stamped on the file, not the date we fetched it, so you always know exactly how fresh the data is. Holdings come sorted by portfolio weight (pctVal) descending. Each row carries only the fields the source actually provides, so a field with no value is omitted rather than sent as null. For an equity fund that is name, ticker, cusip, share balance (with units: "NS" for number of shares), valueUsd, and the weight.
The same endpoint adapts when the fund holds bonds. Here are the top rows of a senior-loan fund, SRLN, where the schema fills in the fixed-income fields the equity example left empty:
{
"reportDate": "2026-08-13",
"totalResults": 690,
"data": [
{ "name": "Hopper Merger Sub Inc aka Hologic 04/07/2033",
"balance": 115690829.42, "units": "PA", "currency": "USD",
"valueUsd": 114533921.13, "pctVal": 2.18037,
"couponRate": 5.9944, "maturityDate": "2033-04-07" },
{ "name": "Finastra USA Inc aka Misys/Almonde Inc. 09/15/2032",
"balance": 111206533.09, "units": "PA", "currency": "USD",
"valueUsd": 107675725.66, "pctVal": 2.049812,
"couponRate": 7.7461, "maturityDate": "2032-09-15" }
]
}Now units is PA (par amount, not shares), and each row carries couponRate and a normalized maturityDate. Whatever date format the issuer published (a serial number, "Feb 15 2035", or "15-Feb-2035"), it comes back as YYYY-MM-DD. The daily shape mirrors the quarterly /api/fund/holdings response and is a superset of it: in addition to the common fields it surfaces sedol, currency, sector, and the bond economics above. The one trade-off is that daily rows are taken straight from the issuer file, so unlike the N-PORT endpoint they are not mapped to a CIK or mappedSymbol and carry no fair-value level.
Point-in-time history: the reportDate parameter
The endpoint no longer serves only the latest file. Every crawl stores a snapshot keyed by the issuer's as-of date, and we retain roughly 30 days of that history per fund (a fund's most recent snapshot is always kept regardless of age). Pass reportDate and the endpoint resolves point-in-time: you get the most recent snapshot on or before that date, so you never need to know which exact days a fund published. Omit it and you get the latest day on file, exactly as before.
curl -H "Authorization: Bearer $TOKEN" \
"https://api.stockfit.io/v1/api/fund/holdings/daily?symbol=CNEQ&reportDate=2026-08-10"{
"reportDate": "2026-08-10",
"totalResults": 32,
"data": [
{ "name": "NVIDIA CORP USD 0.001", "ticker": "NVDA", "cusip": "67066G104",
"balance": 672498, "units": "NS", "currency": "USD",
"valueUsd": 146301940, "pctVal": 14.44 },
{ "name": "MICROSOFT COM USD0.00000625", "ticker": "MSFT", "cusip": "594918104",
"balance": 162698, "units": "NS", "currency": "USD",
"valueUsd": 82334950, "pctVal": 8.13 }
]
}One detail matters in practice: always read the reportDate field that comes back. It is the actual as-of day served, and it can legitimately be older than what you asked for, because a minority of issuers only publish month-end or quarter-end holdings on their sites. For a daily publisher you get the exact day; for a month-end publisher a request for the 10th returns the snapshot from the end of the prior month, and the response field tells you so. For anything older than the retention window, the quarterly N-PORT endpoint remains the historical record.
What is and is not covered
Honesty about scope is part of the point. The daily feed covers transparent, US-listed exchange-traded funds, the ones the ETF Rule obliges to publish full holdings every day. It does not cover three categories, and no amount of engineering changes that, because the data simply is not published daily:
Semi-transparent active ETFs
A growing class of active ETFs operates under a semi-transparent (or non-transparent) structure that lets the manager withhold precise daily holdings, disclosing a proxy basket daily and the full book only quarterly. For those funds the daily file does not exist, so the quarterly N-PORT endpoint is the real source.
Mutual funds and closed-end funds
These are not subject to the daily-disclosure rule at all. A mutual fund or a closed-end fund discloses its full portfolio quarterly through N-PORT, and many post only a top-ten list on their website between filings. Where an issuer does publish a fuller file (some closed-end fund families post a monthly holdings workbook), we onboard it, but the cadence is monthly at best, never daily.
Non-US funds
Coverage today is US-listed funds. That is a deliberate scope line, not a permanent one.
For the questions daily holdings cannot answer on its own, the rest of the fund family fills in: the reverse direction (find all ETFs that hold a specific stock) has its own tutorial, quarterly fund flows and portfolio overlap are NPORT-derived and SEC-sourced, which we cover in the SEC EDGAR alternative data signals walkthrough, and fund-to-fund crowding sits on /api/fund/overlap. The SEC's own description of the fund reporting regime, including N-PORT, is on sec.gov. Holdings are one half of what an ETF discloses; the ETF expense ratio and fee API covers the other, what the fund actually costs beyond the headline number. Turning repeated snapshots of this same daily file into a single comparable trading-activity figure is covered in our portfolio turnover rate walkthrough.
FAQ
Q.What are daily ETF holdings?
Q.How current are daily ETF holdings compared to quarterly N-PORT?
Q.How do I get ETF holdings as JSON?
/api/fund/holdings/daily with a fund ticker and a bearer token. The response is JSON, paginated, sorted by portfolio weight descending, with the issuer's as-of date in the reportDate field. Whatever format the issuer originally published (csv, xlsx, xls, json, html, or pdf), the response shape is identical, so you never parse a spreadsheet or scrape a table yourself.Q.How many ETFs have daily holdings, and which ones?
/api/fund/holdings/daily/supported-funds endpoint, which returns the flat list of covered ticker symbols. Coverage skews toward the large issuers (iShares, First Trust, Invesco, SPDR, ProShares, Innovator, Direxion, Vanguard) because onboarding one issuer's format unlocks its whole lineup.Q.What file formats do ETF issuers publish holdings in?
Q.Can I get historical daily ETF holdings?
reportDate (YYYY-MM-DD) to /api/fund/holdings/daily and the most recent snapshot on or before that date is returned; the response's reportDate field is the actual as-of day served. History has been accumulating since early August 2026. For dates older than the window, use the quarterly N-PORT endpoint.Q.Do daily holdings include bond funds with coupon and maturity?
units: "PA" (par amount instead of share count) and adds couponRate and a normalized maturityDate in YYYY-MM-DD form. Each holding carries only the fields its source file provides, so equity rows omit the bond fields and vice versa.Q.Are mutual fund and closed-end fund holdings available daily?
/api/fund/holdings endpoint.Q.Which StockFit endpoints return daily ETF holdings?
/api/fund/holdings/daily returns a fund's most recent daily holdings, or a point-in-time snapshot when you pass reportDate, and /api/fund/holdings/daily/supported-funds returns the list of covered tickers. The quarterly, N-PORT-sourced counterpart is /api/fund/holdings, which reaches back years rather than the daily feed's rolling month. Related fund analytics (flows, overlap, composition) live under the rest of the /api/fund/* family.Ready to build?
Free API key, no credit card.