Skip to main content
POST
/
v1
/
holdings
/
stocks
/
funds
Stock Fund Holdings
curl --request POST \
  --url https://api.bigdata.com/v1/holdings/stocks/funds \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "identifier": {
    "type": "rp_entity_id",
    "value": "<string>"
  },
  "filters": {
    "quarter": 2,
    "year": 2023
  }
}
'
{
  "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": "<string>",
    "timestamp": "<string>",
    "rp_entity_id": "D8442A",
    "stock_name": "Apple",
    "year": 2025,
    "quarter": 1
  }
}

Authorizations

X-API-KEY
string
header
required

Body

application/json

Schema for the request to the public API.

identifier
SingleIdentifier · object
required

Object specifying which identifier you are using to request the company profile. You must supply one type and its corresponding value.

filters
CompanyFundsHoldingsFilters · object

Object specifying the filters to apply to the request.

Example:
{ "quarter": 2, "year": 2023 }

Response

200 - application/json

Successful Response

results
CompanyFundHoldingsResults · object
required
metadata
PublicCompanyFundsHoldingsRequestMetadata · object

Metadata for the request. Includes the backend request.