Returns quarterly snapshots of a fund's financial profile, sourced from SEC N-PORT filings. Includes total assets, liabilities, net assets, monthly returns, sales/redemptions flow, and number of holdings.
symbol string optional Fund ticker symbol (ETF or mutual fund). Identify the entity by exactly one of: symbol, cik, cusip, composite_figi, or share_class_figi. At least one is required.
cik integer optional SEC Central Index Key (CIK).
cusip string optional CUSIP identifier (9 characters).
composite_figi string optional Composite OpenFIGI identifier.
share_class_figi string optional Share-class OpenFIGI identifier.
curl 'https://api.stockfit.io/v1/api/fund/profile?symbol=SPY&cik=884394&composite_figi=BBG000BDTBL9' \
-H 'Authorization: Bearer YOUR_API_TOKEN'Quarterly fund profile snapshots (most recent first)
reportDate string Quarter-end report date (YYYY-MM-DD)
seriesId integer Series ID for the fund
seriesName string | null Series name, or null for single-series funds
totalAssets number Total assets under management (USD)
totalLiabilities number Total liabilities (USD)
netAssets number Net assets / AUM (totalAssets - totalLiabilities, USD)
returnMon1 number Return for the most recent month of the quarter (%)
returnMon2 number Return for the second month of the quarter (%)
returnMon3 number Return for the third month of the quarter (%)
totalSales number Total inflows/sales during the quarter (USD)
totalRedemptions number Total outflows/redemptions during the quarter (USD)
holdingCount integer Number of holdings in the portfolio
[
{
"reportDate": "2025-12-31",
"seriesId": 0,
"seriesName": null,
"totalAssets": 714279299481,
"totalLiabilities": 2206759226,
"netAssets": 712072540255,
"returnMon1": 2.33,
"returnMon2": 0.23,
"returnMon3": 0.05,
"totalSales": 303112952193.25,
"totalRedemptions": 279346630139.35,
"holdingCount": 503
}
]Symbol not found or not a fund (ETF or mutual fund)
error string Human-readable error message
{}Feature not available on current plan
error string Human-readable error message
{}