VOOZH about

URL: https://apify.com/nexgendata/sec-event-router

โ‡ฑ SEC Event Router Unified SEC Filings & Events Timeline ยท Apify


๐Ÿ‘ SEC Event Router โ€” Unified SEC Filings & Events Timeline avatar

SEC Event Router โ€” Unified SEC Filings & Events Timeline

Pricing

from $100.00 / 1,000 events

Go to Apify Store

SEC Event Router โ€” Unified SEC Filings & Events Timeline

ONE QUERY โ†’ all SEC events (8-K, Form 4, Form D, 13F-HR, Litigation) for a ticker, company name, or CIK in a unified, chronological timeline.

Pricing

from $100.00 / 1,000 events

Rating

0.0

(0)

Developer

๐Ÿ‘ NexGenData

NexGenData

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

21 minutes ago

Last modified

Categories

Share

ONE QUERY โ†’ all SEC events for a company.

Stop running four different SEC actors and stitching the results together. Send one ticker, company name, or CIK and get a unified, chronologically sorted timeline of every material SEC event โ€” 8-K filings, Form 4 insider transactions, Form D private placements, 13F-HR institutional holdings, and SEC litigation releases โ€” in a single dataset.

๐Ÿ“Š Sample Output

๐Ÿ‘ SEC Event Router โ€” unified gateway for SEC events (8-K + Litigation + Form 4 + Form D + 13F) by ticker. Hedge fund event timeline, M&A advisor company monitoring, compliance team multi-form research.

What it does

  • Resolves any ticker, company name, or CIK to a canonical SEC CIK via EDGAR full-text search
  • Fans out to SEC EDGAR (efts.sec.gov) for every requested form type in parallel
  • Scrapes SEC litigation releases for civil/admin actions naming the company
  • Normalizes everything into one event row schema with a form_type discriminator
  • Sorts the merged result by filing_date DESC so the freshest event is row 0
  • Per-row source_url points back to the exact SEC filing index page

Buyer use cases

  • Hedge fund event-driven research โ€” surface every catalyst (8-K, insider buying, litigation) for a watchlist ticker in one call
  • M&A diligence timelines โ€” build a complete SEC event history for the target before signing the LOI
  • Investigative journalism โ€” track a company's material disclosures, insider activity, and regulatory actions across years
  • Compliance & monitoring โ€” daily portfolio sweep across all SEC event types for every holding

Input

FieldTypeDescription
querystring (required)Ticker (AAPL), company name (Apple Inc.), or 10-digit CIK
formTypesstring[]Subset of ["8-K", "4", "D", "13F-HR", "Litigation"] (default: all)
dateFromstringEarliest event date YYYY-MM-DD
dateTostringLatest event date YYYY-MM-DD (empty = today)
maxEventsPerTypeintegerCap per form type (1โ€“100). Hard total cap = maxEventsPerType ร— formTypes.length

Output schema

{
"form_type":"8-K | 4 | D | 13F-HR | Litigation Release",
"filing_date":"2026-05-28",
"accession_number":"0001234567-26-000123",
"company_name":"Apple Inc.",
"ticker":"AAPL",
"cik":"320193",
"event_title":"Item 8.01 Other Events: Subsidiary Reorganization",
"event_summary":"First 500 chars of headline + key items/event type",
"form_specific_data":{},
"source_url":"https://www.sec.gov/...",
"scraped_at":"2026-05-29T20:00:00Z"
}

form_specific_data shape varies by form_type:

  • 8-K: {"items": ["1.01", "8.01"]}
  • 4: {"insider_name": "Jane Doe", "insider_role": "CEO", "transaction_type": "Sale", "shares": 10000, "price_per_share": 175.50}
  • D: {"offering_amount": 5000000, "amount_sold": 2500000, "investors_count": 18}
  • 13F-HR: {"total_value_usd": 45000000000, "holdings_count": 850}
  • Litigation Release: {"defendants": ["John Smith"], "action_type": "civil_action", "release_number": "LR-25888"}

Sample Output

[
{
"form_type":"8-K",
"filing_date":"2026-05-28",
"accession_number":"0000320193-26-000098",
"company_name":"Apple Inc.",
"ticker":"AAPL",
"cik":"320193",
"event_title":"Item 8.01 Other Events",
"event_summary":"Apple Inc. โ€” Form 8-K filed 2026-05-28. Items: 8.01.",
"form_specific_data":{"items":["8.01"]},
"source_url":"https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=0000320193&type=8-K",
"scraped_at":"2026-05-29T20:00:00Z"
},
{
"form_type":"4",
"filing_date":"2026-05-22",
"accession_number":"0000320193-26-000091",
"company_name":"Apple Inc.",
"ticker":"AAPL",
"cik":"320193",
"event_title":"Form 4 โ€” Insider transaction",
"event_summary":"Form 4 insider transaction filed for Apple Inc.",
"form_specific_data":{"insider_name":null,"insider_role":null,"transaction_type":null,"shares":null,"price_per_share":null},
"source_url":"https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=0000320193&type=4",
"scraped_at":"2026-05-29T20:00:00Z"
},
{
"form_type":"D",
"filing_date":"2026-04-19",
"accession_number":"0000320193-26-000077",
"company_name":"Apple Inc.",
"ticker":"AAPL",
"cik":"320193",
"event_title":"Form D โ€” Notice of Exempt Offering",
"event_summary":"Form D filed for Apple Inc.",
"form_specific_data":{"offering_amount":null,"amount_sold":null,"investors_count":null},
"source_url":"https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=0000320193&type=D",
"scraped_at":"2026-05-29T20:00:00Z"
}
]

When to use the dedicated actors instead

This is a convenience router optimized for breadth across form types for a single ticker. If you need volume on one form type โ€” entire market 8-K firehose, every insider transaction in the S&P 500, all Form D offerings in a quarter โ€” use the dedicated actors:

  • sec-edgar-8k-filings โ€” high-throughput 8-K firehose
  • sec-litigation-releases โ€” every SEC enforcement action
  • sec-form-d-tracker โ€” Reg D private placement firehose
  • sec-form4-insider-tracker โ€” insider transaction firehose
  • sec-form-13f-tracker-pro โ€” institutional holdings snapshots

Compliance

  • Issues User-Agent: NexGenData hello@nexgendata.com on every SEC request (SEC mandates a contact UA)
  • Rate-limited to โ‰ค5 req/s (SEC ceiling is 10 req/s; we stay conservative)
  • All data sourced directly from efts.sec.gov, www.sec.gov/litigation/litreleases.htm, and EDGAR filing index pages โ€” public legal record only
  • Per-row source_url for verification
  • Officer names, insider names, and defendants from SEC filings are public legal record; no extra PII (no emails, phones, addresses)

Keywords

SEC event timeline API, SEC filings aggregator, 8-K Form 4 Form D 13F unified, SEC company events API, EDGAR filings unified, insider trading timeline, SEC litigation timeline, company event-driven research

Related Actors โ€” Regulatory & IP Intelligence Cluster

Securities & Markets Enforcement:

Corporate Disclosure & Announcements:

IP Intelligence:

๐Ÿ”— Related NexGenData Actors

Part of the NexGenData SEC Filing suite โ€” pair this Actor with:

You might also like

SEC EDGAR Filings Scraper

alwaysprimedev/sec-edgar-filings-scraper

Search and download structured metadata for SEC EDGAR filings (10-K, 10-Q, 8-K, S-1, 13F, Form 4, etc.) by ticker, CIK, date range, form type, or full-text query. Optionally enriched with company firmographics.

SEC EDGAR Scraper โ€” 10-K, 8-K, Form 4 & 13F

khadinakbar/sec-edgar-all-in-one-scraper

Scrape SEC EDGAR โ€” 10-K, 10-Q, 8-K, Form 4 insiders, 13F holdings, 13D/G stakes, DEF 14A, Form D, XBRL facts, full-text search. 9 modes auto-detected from ticker/CIK/accession/URL/keyword. MCP-ready, free official SEC API. $0.005/result.

SEC EDGAR Filings API

oakridge_tech/sec-edgar-filings-api

Structured SEC EDGAR filings metadata (10-K, 10-Q, 8-K, 13F, Form 4) by ticker/CIK or from the live recent-filings feed. One row per filing, ready for fintech, quant, and LLM research pipelines.

1

SEC EDGAR Filings Scraper

crawlerbros/sec-edgar-scraper

Scrape SEC EDGAR filings (10-K, 10-Q, 8-K, Form 4 insider trades, 13F holdings) for any US public company. HTTP-only via the SEC's public API. No login, no proxy, no auth.

4

4.0

SEC EDGAR Scraper โ€” SEC Filings Data & Regulatory Monitor

scrapepilot/sec-edgar-scraper----sec-filings-data-regulatory-monitor

Extract SEC filings data from any US public company by ticker. Get 10-K, 10-Q, 8-K, 13F, S-1, and all SEC EDGAR filing types โ€” filing ID, date, form type, and direct document link. Demo mode included. No login. $18.99/month. 2-hour free trial.

SEC EDGAR Scraper โ€” 10-K, 10-Q & 8-K Filings

devilscrapes/sec-edgar-filings-scraper

Search SEC EDGAR (US public company filings) by company ticker, CIK, or form type via the free EDGAR API โ€” each filing's CIK, form type, period, filing date, accession number, and primary-document URL โ€” export to JSON or CSV dataset. Built on SEC's full-text search.