Skip to content

GET /api/v1/us/filings

SEC filings (10-K, 10-Q, 8-K, etc.).

Returns SEC filings for US public companies including filing type, date, accession number, and URL.

Request

GET /api/v1/us/filings

Headers

HeaderValue
F-API-KEYYour API key

Query Parameters

ParameterTypeRequiredFilterDescription
cikstringNoexactSEC CIK
tickerstringNoexactStock ticker
filing_typestringNoexactFiling type (10-K, 10-Q, 8-K, etc.)
accession_numberstringNoexactAccession number
date_fromstringNorangeStart date
date_tostringNorangeEnd date
limitintegerNoMax rows per page (default 100, max 1000)
offsetintegerNoRows to skip (default 0)
sortstringNoSort field (default filing_date)
orderasc | descNoSort direction (default desc)

Example

Terminal window
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
}
}