Returns SEC filings for US public companies including filing type, date, accession number, and URL.
Request
GET /api/v1/us/filingsHeaders
| Header | Value |
|---|---|
F-API-KEY | Your API key |
Query Parameters
| Parameter | Type | Required | Filter | Description |
|---|---|---|---|---|
cik | string | No | exact | SEC CIK |
ticker | string | No | exact | Stock ticker |
filing_type | string | No | exact | Filing type (10-K, 10-Q, 8-K, etc.) |
accession_number | string | No | exact | Accession number |
date_from | string | No | range | Start date |
date_to | string | No | range | End date |
limit | integer | No | — | Max rows per page (default 100, max 1000) |
offset | integer | No | — | Rows to skip (default 0) |
sort | string | No | — | Sort field (default filing_date) |
order | asc | desc | No | — | Sort direction (default desc) |
Example
curl -H "F-API-KEY: fk-xxxxx" \ "https://finance-api.xp-java.workers.dev/api/v1/us/filings?ticker=AAPL&filing_type=10-K&limit=5"Response
{ "code": 0, "message": "ok", "data": [ { "cik": "0000320193", "ticker": "AAPL", "filing_type": "10-K", "filing_date": "2024-11-01", "accession_number": "0000320193-24-000123", "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000123/0000320193-24-000123-index.htm", "updated_at": "2024-11-01T00:00:00Z" } ], "meta": { "total": 5, "limit": 5, "offset": 0, "has_more": false }}