v1

latestOpenAPI 3.1.02026-07-2268276396.6 KB
Fund Holdings

Stock Fund Holdings

Retrieve institutional fund holdings for a specified stock, based on the latest SEC 13F filings. The endpoint returns top holders with their current market value, share count, quarterly change, and estimated capital flow. This allows users to identify leading institutional investors, track changes in ownership, and analyze fund activity trends such as increases or reductions in positions.

post/v1/holdings/stocks/funds

Request body

Example request

{
  "identifier": {
    "value": "4A6F00"
  },
  "filters": {
    "year": 2025
  }
}

Response

Successful Response

Example response

{
  "results": {
    "funds": [
      {
        "rp_entity_id": "HJ95FV",
        "name": "Blackrock",
        "rank": 1,
        "market_value": 253273263449,
        "status": "increased",
        "shares": 1140202870,
        "shares_last": 1123417607,
        "shares_change": 16785263,
        "shares_change_percent": 1.49,
        "capital_flow": 3728510470
      }
    ]
  },
  "metadata": {
    "request_id": "123e4567-e89b-12d3-a456-426614174000",
    "timestamp": "2025-09-08T10:52:33.453834+00:00",
    "rp_entity_id": "D8442A",
    "stock_name": "Apple",
    "year": 2025,
    "quarter": 1
  }
}