Returns aggregate filing activity statistics for a company, including total counts by form type, amendment rate, and XBRL coverage. Useful for understanding a company's SEC filing history and compliance patterns.
symbol string optional Stock ticker symbol. Identify the entity by exactly one of: symbol, cik, cusip, composite_figi, or share_class_figi. At least one is required.
cik integer optional SEC Central Index Key (CIK).
cusip string optional CUSIP identifier (9 characters).
composite_figi string optional Composite OpenFIGI identifier.
share_class_figi string optional Share-class OpenFIGI identifier.
curl 'https://api.stockfit.io/v1/api/filings/stats?symbol=AAPL&cik=320193&cusip=037833100&composite_figi=BBG000B9XRY4&share_class_figi=BBG001S5N8V8' \
-H 'Authorization: Bearer YOUR_API_TOKEN'Filing statistics
totalFilings integer Total number of SEC filings for this company
byType map of string to object Breakdown by form type
* object count integer Number of filings of this type
latest string | null Date of most recent filing of this type (YYYY-MM-DD)
amendments object count integer Number of amended filings
rate number Amendment rate (amendments / total filings)
xbrlCoverage number Fraction of filings with XBRL data
{
"totalFilings": 342,
"byType": {
"10-K": {
"count": 12,
"latest": "2024-11-01"
},
"8-K": {
"count": 89,
"latest": "2024-12-15"
},
"10-Q": {
"count": 35,
"latest": "2024-08-02"
}
},
"amendments": {
"count": 8,
"rate": 0.023
},
"xbrlCoverage": 0.87
}Invalid parameters or company not found
error string Human-readable error message
{}Feature not available on current plan
error string Human-readable error message
{}