---
title: "Funds holding a symbol"
method: GET
path: "/api/fund/reverse-lookup"
tags: ["ETF/MF"]
---

# Funds holding a symbol

`GET /api/fund/reverse-lookup`

![ETF](https://img.shields.io/badge/ETF-14b8a6) ![Pro](https://img.shields.io/badge/Pro-8b5cf6)

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.

## Query parameters

- `symbol` string
- `cik` integer
- `cusip` string
- `composite_figi` string
- `share_class_figi` string
- `page` integer
- `pageSize` integer

## Response `200`

Paginated list of ETFs/funds holding the stock

- object
  - `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` object[]
    - `fundName` string — Name of the fund
    - `fundTicker` string, nullable — 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, nullable — Total net assets of the fund (USD)

## Other responses

- `400` — Invalid parameters or symbol not found
- `403` — Feature not available on current plan

---

[API](https://skmtc.net/stockfit/apis/stockfit-api.md) · [All operations](https://skmtc.net/stockfit/apis/stockfit-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/stockfit/stockfit-api/revisions/3d5897270d8a/schema)
