Get institution portfolio analytics
GET
/api/v1/public/intelligence/institution/:cik/portfolio-analytics10 credits / callAPI key required
Return sector allocation and top holdings for an institution's latest 13F portfolio by CIK. Sectors are weighted by reported market value; top holdings include per-position weight and quarter-over-quarter share change.
Parameters
Path
SEC Central Index Key (1-10 digits)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/intelligence/institution//portfolio-analytics' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
fix parameters to runGET
https://api.signal8.ai/api/v1/public/intelligence/institution//portfolio-analyticsexample · 200
{
"success": true,
"data": {
"sectors": [
{
"sector": "Technology",
"holdingCount": 2557,
"totalValue": 2212084217949,
"weight": 32.07
},
{
"sector": "Financial Services",
"holdingCount": 2752,
"totalValue": 889094925222,
"weight": 12.89
},
{
"sector": "Healthcare",
"holdingCount": 3187,
"totalValue": 676781757999,
"weight": 9.81
}
],
"topHoldings": [
{
"rank": 1,
"ticker": "NVDA",
"companyName": "NVIDIA Corporation",
"sector": "Technology",
"shares": 2266683275,
"value": 422736430797,
"weight": 6.13,
"changePercent": 1.94
},
{
"rank": 2,
"ticker": "AAPL",
"companyName": "Apple Inc.",
"sector": "Technology",
"shares": 1426283914,
"value": 387749544852,
"weight": 5.62,
"changePercent": 1.92
}
]
}
}