Filings
Search and retrieve SEC filings from EDGAR.
GET
/filingsParameters
| Parameter | Type | Description |
|---|---|---|
cik | string | Company CIK number (e.g., "320193") |
formTypes | string | Comma-separated form types (e.g., "10-K,10-Q,8-K") |
filingDate | string | Specific filing date (YYYY-MM-DD) |
startDate | string | Start of date range (YYYY-MM-DD) |
endDate | string | End of date range (YYYY-MM-DD) |
limit | integer | Number of results (default: 200) |
Example request
bash
curl "https://api.secdaily.io/filings?cik=320193&formTypes=10-K&limit=5" \-H "x-api-key: YOUR_API_KEY"
Response
json
{"filings": [{"id": "0000320193-24-000123","formType": "10-K","filingDateInEst": "2024-11-01","entity": {"name": "Apple Inc.","cik": "0000320193","ticker": "AAPL"},"periodOfReport": "2024-09-28","linkToFiling": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000123/0000320193-24-000123-index.htm","documents": [{"type": "10-K","description": "Form 10-K","url": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000123/aapl-20240928.htm"}]}],"count": 42,"hasMore": true}
Response fields
| Field | Type | Description |
|---|---|---|
id | string | Unique accession number |
formType | string | SEC form type (10-K, 10-Q, 8-K, etc.) |
filingDateInEst | string | Filing date in Eastern time (YYYY-MM-DD) |
entity | object | Company info: name, cik, ticker |
periodOfReport | string | Reporting period end date |
linkToFiling | string | URL to the filing on SEC.gov |
documents | array | List of filing documents and exhibits |
Get a single filing
GET
/filings/:idbash
curl "https://api.secdaily.io/filings/0000320193-24-000123" \-H "x-api-key: YOUR_API_KEY"
Returns a single filing object (same shape as items in the list response above).
json
{"id": "0000320193-24-000123","formType": "10-K","filingDateInEst": "2024-11-01","entity": {"name": "Apple Inc.","cik": "0000320193","ticker": "AAPL"},"periodOfReport": "2024-09-28","linkToFiling": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000123/0000320193-24-000123-index.htm","documents": [{"type": "10-K","description": "Form 10-K","url": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000123/aapl-20240928.htm"},{"type": "EX-21","description": "Subsidiaries","url": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000123/aapl-20240928_ex21.htm"}]}
Common form types
| Form | Description |
|---|---|
10-K | Annual report |
10-Q | Quarterly report |
8-K | Current report (material events) |
4 | Insider trading |
S-1 | IPO registration statement |
DEF 14A | Proxy statement |