Get institution 13F filing list
GET
/api/v1/public/intelligence/institution/:cik/filings10 credits / callAPI key required
List an institution's 13F filings by CIK, most recent first. Each filing reports its accession number, form type, filed date, period of report, holdings count, total reported value, and a link to the SEC filing.
Parameters
Path
SEC Central Index Key (1-10 digits)
Query
Max filings to return (default 20, max 50).
Number of results to skip (default 0)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/intelligence/institution//filings?limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
fix parameters to runGET
https://api.signal8.ai/api/v1/public/intelligence/institution//filings?limit=10&offset=0example · 200
{
"success": true,
"data": {
"cik": "0000102909",
"filings": [
{
"accessionNumber": "0000102909-26-002707",
"formType": "13F-NT",
"filedAt": "2026-05-08T21:25:43.000Z",
"periodOfReport": "2026-03-30T22:00:00.000Z",
"holdingsCount": 0,
"totalValue": 0,
"secUrl": "https://www.sec.gov/Archives/edgar/data/102909/000010290926002707/"
},
{
"accessionNumber": "0000102909-26-000031",
"formType": "13F-HR",
"filedAt": "2026-01-29T09:40:29.000Z",
"periodOfReport": "2025-12-30T23:00:00.000Z",
"holdingsCount": 4329,
"totalValue": 6897676080637,
"secUrl": null
}
],
"pagination": {
"total": 16,
"limit": 20,
"offset": 0,
"hasMore": false
}
}
}