Live SEC API use case
SEC Filing Change API
A self-serve endpoint pattern for apps that need recently observed SEC filings, form filters, and stable polling windows without maintaining their own EDGAR ingest.
GET /v1/sec/changes?since=2026-07-01&form=8-K&limit=50
{
"data": [
{
"changeType": "material_event",
"observedAt": "2026-07-03T00:00:00+00:00",
"filing": {
"ticker": "AAPL",
"form": "8-K",
"eventType": "current_report",
"filedAt": "2026-07-02"
}
}
],
"meta": { "count": 1, "since": "2026-07-01" }
}
Workflow Fit
This page is part of the live SEC product funnel. It helps identify which implemented workflows deserve deeper examples, listing copy, or pricing adjustments.
- Alert workers that poll for new 8-K, 10-Q, and 10-K filings.
- Internal dashboards that need a predictable delta feed.
- Data pipelines that want ticker-first SEC updates without raw EDGAR parsing.
Use Case FAQ
Is this endpoint live?
Yes. The change feed is part of the live SEC Event Intelligence API.
Does it provide investment advice?
No. It returns public filing data and metadata only.