Funds Holding
Retrieve stocks ranked by the number of funds holding in the latest reporting quarter.
page
number
The page number to retrieve.
Defaults to 1.
page_size
number
The number of items per page.
If specified, must be between 1 and 10000 inclusive.
Defaults to 100.
sort_by
string
The field to sort the results by.
One of current, change, change_percent.
Defaults to current.
sort_dir
string
The order to sort the results by.
One of asc, desc.
Defaults to desc.
type
string
The type of security to retrieve.
One of stock, etf.
Returns all types if not specified.
market_cap
string
The market cap of securities to retrieve.
One or more of mega_cap, large_cap, mid_cap, small_cap, micro_cap, separated by commas.
Returns all market caps if not specified.
sector
string
The sector of securities to retrieve.
See the Sectors section for a list of all sectors.
Returns all sectors if not specified.
industry
string
The industry of securities to retrieve.
See the Industries section for a list of all industries.
Returns all industries if not specified.
/v1/fund-trends/holding
{
"page": 1,
"page_size": 100,
"has_more_pages": true,
"reporting_year": 2024,
"reporting_quarter": 3,
"stocks": [
{
"stock": {
"id": "p9sa1q",
"ticker": "MSFT",
"name": "Microsoft",
"active": true
},
"current": 5651,
"previous": 5673,
"change": -22,
"change_percent": -0.39
},
{
"stock": {
"id": "bqjlgb",
"ticker": "AAPL",
"name": "Apple",
"active": true
},
"current": 5424,
"previous": 5502,
"change": -78,
"change_percent": -1.42
},
{
"stock": {
"id": "8c75b9",
"ticker": "AMZN",
"name": "Amazon",
"active": true
},
"current": 5391,
"previous": 5382,
"change": 9,
"change_percent": 0.17
}
]
}