Returns a paginated list of ETFs and mutual funds that hold the specified symbol in their portfolio, based on the most recent N-PORT filings. Accepts any symbol type — stocks, ETFs, and mutual funds (fund-of-funds structures are supported). Sorted by position value descending.
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.
page integer optional Page number (1-indexed)
pageSize integer optional Results per page
curl 'https://api.stockfit.io/v1/api/fund/reverse-lookup?symbol=SPY&cik=884394&composite_figi=BBG000BDTBL9&page=1&pageSize=50' \
-H 'Authorization: Bearer YOUR_API_TOKEN'Paginated list of ETFs/funds holding the stock
page integer Current page number
pageSize integer Results per page
totalPages integer Total number of pages
totalResults integer Total number of funds holding the symbol
data array of object fundName string Name of the fund
fundTicker string | null Ticker symbol of the fund
fundCik integer SEC CIK of the fund
fundSeriesId integer Series ID of the fund
valueUsd number Market value of the position (USD)
pctVal number Position as percentage of fund net assets
balance number Number of shares held
reportDate string Report date of the N-PORT filing (YYYY-MM-DD)
fundNetAssets number | null Total net assets of the fund (USD)
{
"page": 1,
"pageSize": 50,
"totalPages": 12,
"totalResults": 573,
"data": [
{
"fundName": "VANGUARD TOTAL STOCK MARKET INDEX FUND",
"fundTicker": "VTSMX",
"fundCik": 36405,
"fundSeriesId": 2848,
"valueUsd": 126245057639.88,
"pctVal": 6.134426855446,
"balance": 464375258,
"reportDate": "2025-12-31",
"fundNetAssets": 2057976411077
}
]
}Invalid parameters or symbol not found
error string Human-readable error message
{}Feature not available on current plan
error string Human-readable error message
{}