Docs / API reference
GET /v1/filings/{ticker}
Recent SEC filings with filing/report dates and document links.
Parameters
| Param | In | Values |
|---|---|---|
ticker | path | US stock ticker |
limit | query | 1–100 (default 20) |
form | query | e.g. 10-K, 10-Q, 8-K |
Request
curl "https://api.edgrapi.com/v1/filings/AAPL?form=10-K&limit=5" -H "X-API-Key: edgr_..."
Response
{
"ticker": "AAPL", "cik": "0000320193", "company": "Apple Inc.", "count": 1,
"filings": [
{ "form": "10-K", "filed": "2025-11-01", "period": "2025-09-27",
"accession": "0000320193-25-000123",
"url": "https://www.sec.gov/Archives/edgar/data/320193/.../aapl-20250927.htm" }
],
"source": "SEC EDGAR submissions"
}