US SEC EDGAR Filings & Form 4 Insider Trades Monitor avatar

US SEC EDGAR Filings & Form 4 Insider Trades Monitor

Pricing

Pay per usage

Go to Apify Store
US SEC EDGAR Filings & Form 4 Insider Trades Monitor

US SEC EDGAR Filings & Form 4 Insider Trades Monitor

Extract and monitor official US SEC EDGAR corporate filings (10-K, 10-Q, 8-K, Form 4 Insider Trades, 13F) by stock ticker or CIK with instant document URLs.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Jiani Peng

Jiani Peng

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

11 hours ago

Last modified

Share

An autonomous, ultra-fast Apify Actor that extracts and monitors official US Securities and Exchange Commission (SEC) EDGAR corporate filings by stock ticker or CIK with direct document links.

Ideal for quantitative hedge funds, financial analysts, equity research teams, compliance officers, and autonomous AI agents tracking real-time corporate disclosures and executive insider trades.


📈 Supported SEC Forms

  • Form 4: Real-time officer & director insider stock buys/sales.
  • 10-K: Comprehensive annual audited financial reports.
  • 10-Q: Quarterly financial performance reports.
  • 8-K: Unscheduled material corporate events, executive changes, M&A announcements.
  • Form 144: Notice of proposed sale of restricted securities.
  • Schedule 13D / 13G: Activist and passive institutional stake disclosures (> 5% ownership).
  • Form 13F: Quarterly institutional investment manager equity holdings.
  • DEF 14A: Annual shareholder proxy statements & executive compensation.
  • S-1: Initial public offering (IPO) registration statements.

📥 Input Parameters

FieldTypeDefaultDescription
tickersOrCikArray["AAPL", "NVDA", "MSFT"]Stock tickers (e.g. TSLA, AMZN, PLTR) or 10-digit CIK numbers.
formsArray["10-K", "10-Q", "8-K", "4"]SEC Form types to filter.
maxResultsPerCompanyInteger50Maximum number of filings per company (1 to 500).

📤 Output Format

{
"ticker": "AAPL",
"cik": "0000320193",
"companyName": "Apple Inc.",
"sic": "3571",
"sicDescription": "Electronic Computers",
"form": "4",
"filingDate": "2026-08-15",
"reportDate": "2026-08-14",
"accessionNumber": "0000320193-26-000045",
"primaryDocument": "form4.xml",
"primaryDocDescription": "FORM 4 STATEMENT OF CHANGES IN BENEFICIAL OWNERSHIP",
"documentUrl": "https://www.sec.gov/Archives/edgar/data/320193/000032019326000045/form4.xml",
"filingDetailUrl": "https://www.sec.gov/ix?doc=/Archives/edgar/data/320193/000032019326000045/form4.xml",
"isXBRL": true,
"isInlineXBRL": false
}

🤖 Python & Node.js SDK Integration

from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("Richigga/us-sec-edgar-company-filings-monitor").call(
run_input={
"tickersOrCik": ["NVDA", "TSLA"],
"forms": ["4", "8-K"],
"maxResultsPerCompany": 20
}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(f"[{item['form']}] {item['companyName']}: {item['documentUrl']}")

💰 Unit Economics & Performance

  • Pricing Model: Pay Per Event / Pay Per Request ($0.003 per run)
  • External Cost: $0.00 (Official public SEC EDGAR API)
  • Execution Speed: < 300ms per company
  • Gross Margin: > 97%

📄 License

Apache-2.0. Compliant with SEC Fair Access guidelines.