Company Filings
Fetch issuer filing metadata by ticker or CIK for dashboards and company pages.
EDGAR API
Use direct SEC.gov EDGAR data when raw source access is enough. Use SEC Event Intelligence when a buyer needs normalized JSON, watchlist polling, company lookup, Postman import, OpenAPI, and hosted MCP setup paths.
{
"data": [
{
"changeType": "material_event",
"observedAt": "2026-07-02T17:23:22+00:00",
"filing": {
"ticker": "MSFT",
"form": "8-K",
"eventType": "current_report",
"filedAt": "2026-07-02"
}
}
],
"meta": { "count": 1 }
}
The right EDGAR API path depends on whether the buyer wants raw filing documents or a maintained integration surface.
Raw SEC.gov EDGARBest when the workflow can handle source formats, rate limits, and parsing internally.SEC Event IntelligenceBest when the workflow needs normalized JSON, ticker filters, and watchlist polling.Company lookupResolve CIKs and tickers before calling filing-history or event endpoints.Postman + OpenAPIEvaluate request shape before moving credentials into a server-side job.Hosted MCPLet MCP-capable clients discover public setup tools before production access.These pages map EDGAR-style workflows to live SEC Event Intelligence endpoints.
Fetch issuer filing metadata by ticker or CIK for dashboards and company pages.
Use a plain Python HTTP client to compare direct EDGAR access with hosted JSON endpoints.
Review the decision rule for raw source access versus normalized filing-change polling.