com.data-apis.api/sec-event-intelligence
Official9 toolsData APIs SEC Event Intelligence API
Data APIs SEC Event Intelligence API for SEC API/EDGAR filings, OpenAPI, MCP, A2A at data-apis.com.
Access SEC filings and EDGAR data through APIs and MCP integration.
Captured live from the server via tools/list.
sec_latest_filings
Fetch a newest-first snapshot of public SEC filings. Use for initial dashboards or latest-form lookups when no polling cursor is needed; use sec_filing_changes for incremental polling.
Parameters (2)
- formstring
Optional SEC form filter, for example 8-K or 10-Q.
- limitinteger
Maximum newest filings to return.
sec_filing_changes
Fetch filings observed on or after a since date for polling jobs that persist a cursor. Supports ticker/CIK, form, and event-type filters; use sec_latest_filings for a simple newest-first snapshot.
Parameters (5)
- eventTypestring
Optional normalized event category filter.
- formstring
- limitinteger
Maximum changed filings to return.
- sincestringrequired
Inclusive lower bound in YYYY-MM-DD format.
- tickerstring
Optional ticker symbol or 10-digit CIK.
sec_watchlist_changes
Fetch incremental filing changes for multiple tickers or CIKs, grouped into per-company buckets. Use for batch watchlist polling, alert fan-out, and dashboards that track a fixed issuer list.
Parameters (5)
- eventTypestring
Optional normalized event category filter.
- formstring
Optional SEC form filter applied to every ticker.
- limitinteger
Maximum changed filings per ticker bucket.
- sincestringrequired
Inclusive lower bound in YYYY-MM-DD format.
- tickersanyrequired
Comma-separated string or array of ticker symbols or CIKs.
sec_company_search
Search the SEC company index by ticker, CIK, or legal name and return identifiers to pass into profile, filings, events, and insider-trade tools.
Parameters (2)
- limitinteger
- qstringrequired
Ticker, CIK, or company-name search term.
sec_company_profile
Fetch one issuer profile with ticker/CIK identity, filing coverage, form counts, and latest known filing. Use after company search to verify the target issuer before retrieving filings.
Parameters (1)
- tickerstringrequired
Ticker symbol or 10-digit CIK.
sec_company_filings
Return newest-first filing rows for one company, optionally narrowed by SEC form type. Use when you need accession numbers and filing metadata history, not normalized event categories.
Parameters (3)
- formstring
Optional SEC form filter, for example 8-K or 10-Q.
- limitinteger
Maximum company filings to return.
- tickerstringrequired
Ticker symbol or 10-digit CIK for one issuer.
sec_company_events
Return normalized event records derived from one company's filings. Use when you need event labels and monitoring-friendly changes instead of the full company filing list.
Parameters (2)
- limitinteger
Maximum normalized company events to return.
- tickerstringrequired
Ticker symbol or 10-digit CIK for one issuer.
sec_insider_trades
Return public insider ownership filing metadata from Forms 3, 4, and 5, optionally scoped to one ticker or CIK. Use for insider activity monitoring, not trade recommendations.
Parameters (2)
- limitinteger
Maximum insider filing records to return.
- tickerstring
Optional ticker symbol or 10-digit CIK.
sec_filing_summary
Retrieve one normalized filing summary by SEC accession number, including issuer, form, filed date, source links, and concise summary fields. Use after another filing tool returns accessionNo.
Parameters (1)
- accessionNostringrequired
SEC accession number.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"sec-event-intelligence": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://api.data-apis.com/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.