Institutional holdings
13F filings by filer CIK.
institutionalHoldings(cik) returns the latest 13F-HR positions for a filer. Use it to track what hedge funds own, size positions, or surface whale activity.
{
institutionalHoldings(cik: "0001067983", filter: { limit: 10 }) {
issuerName
cusip
shares
value
reportDate
filingDate
}
}
- curl
- TypeScript
- CLI
curl https://api.jintel.ai/api/graphql \
-H "Authorization: Bearer $JINTEL_API_KEY" \
-d '{"query":"{ institutionalHoldings(cik:\"0001067983\", filter:{ limit:10 }) { issuerName cusip shares value reportDate filingDate } }"}'
const { data } = await jintel.institutionalHoldings("0001067983", { limit: 10 });
// 13F positions for Berkshire Hathaway
jintel institutional-holdings 0001067983 --limit 10