SEC Filing Monitor + AI Summaries (EN/RU/AR)
Pricing
from $1.00 / 1,000 raw filing records
SEC Filing Monitor + AI Summaries (EN/RU/AR)
Monitors SEC EDGAR filings (10-K, 10-Q, 8-K...) for your tickers and enriches each filing with an AI plain-English brief: summary, key risks, financial highlights, with optional Russian and Arabic translations.
Pricing
from $1.00 / 1,000 raw filing records
Rating
0.0
(0)
Developer
Mikhail K
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
SEC Filing Monitor + AI Summaries (EN/RU/AR/ZH)
Track the SEC filings that matter to you — and actually read them. This actor monitors SEC EDGAR for the companies you choose and turns every 10-K, 10-Q or 8-K into a structured, plain-English brief: what the company does, what just happened, the key risks, and the financial highlights — optionally translated into Russian, Arabic, and Chinese for non-English-speaking investors and analysts.
Raw filings are free on EDGAR. The product here is the analysis layer: instead of a 300-page annual report you get a 5-sentence brief, a risk list and the headline numbers, per filing, in a clean dataset you can pipe anywhere (Sheets, Slack, email alerts, your own app).
What it does
- Resolves your tickers/CIKs via SEC's official company map.
- Pulls each company's filing history from the official EDGAR submissions API (public-domain data, explicitly published for reuse).
- Filters by form type and date — set
sinceDateon a scheduled run to get only new filings since the last run (a filing alert feed). - Fetches each filing's primary document and produces an AI brief per filing:
summary,keyRisks[],financialHighlights{}, plussummary_ru/summary_ar/summary_zhwhen requested. - Self-checks its own output (record counts, field fill rates) and fails loudly instead of silently returning broken data.
Input example
{"tickersOrCIKs": ["AAPL", "NVDA", "320193"],"formTypes": ["10-K", "10-Q", "8-K"],"sinceDate": "2026-01-01","maxItems": 50,"enrich": true,"targetLangs": ["en", "ru"],"userAgentContact": "you@example.com"}
userAgentContact is required by SEC fair-access rules (it identifies your
client in the User-Agent header).
Exact financials, not LLM-guessed
financialHighlights are XBRL-exact, not LLM-generated. Revenue, net income,
total assets, total liabilities, and stockholders' equity are pulled
deterministically from SEC's official XBRL data and matched to the filing by
fiscal-period-end date. Figures that aren't reported are omitted — never
fabricated.
Output example
{"cik": "0000320193","ticker": "AAPL","company": "Apple Inc.","formType": "10-K","filedDate": "2025-10-31","reportDate": "2025-09-27","accessionNumber": "0000320193-25-000079","url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/aapl-20250927.htm","scrapedAt": "2026-07-05T18:00:58.592866+00:00"}
With enrichment on, each record additionally carries the brief — an actual
AAPL 10-K brief (summary and risks are grounded in the filing text;
financialHighlights are XBRL-exact):
{"summary": "Apple designs and sells consumer hardware and services, reporting results across five geographic segments (Americas, Europe, Greater China, Japan, and Rest of Asia Pacific) and by product category: iPhone, Mac, iPad, Wearables/Home/Accessories, and Services. For fiscal 2025 (ended September 27, 2025) the company reported total net sales of $416.16 billion, up 6% year over year, with iPhone at $209.6 billion and record Services revenue of $109.2 billion (up 14%); total gross margin was 46.9% and net income was $112.01 billion. Growth was led by the Americas and Europe, while Greater China net sales declined 4%. The filing notes that new U.S. tariffs announced beginning in the second quarter of 2025 pressured product gross margins and that research and development expense rose 10% to $34.6 billion.","keyRisks": ["Dependence on global and regional economic conditions affecting consumer demand","International trade restrictions and new tariffs, with a supply chain concentrated in China and other Asian countries","Business interruptions from geopolitical conflict, natural disasters, or cybersecurity attacks","Downward pressure and volatility in gross margins","Concentration of manufacturing with outsourcing partners"],"financialHighlights": {"revenue": "$416.16B","netIncome": "$112.01B","totalAssets": "$359.24B","totalLiabilities": "$285.51B","stockholdersEquity": "$73.73B"},"summary_ru": "Apple разрабатывает и продаёт потребительскую технику и услуги...","summary_ar": "تصمم شركة Apple وتبيع الأجهزة الاستهلاكية والخدمات...","summary_zh": "苹果公司设计和销售消费电子产品与服务..."}
Why this actor (vs. raw EDGAR scrapers)
- Analysis, not dumps — summaries, risks and highlights, not 300 pages of HTML.
- Multilingual — RU/AR/ZH filing briefs for cross-border investors; raw-dump actors don't do this.
- Incremental monitoring —
sinceDate+ scheduling = a filing alert feed. - Reliability by design — official API, polite rate limiting with backoff, and a self-check that fails loudly if extraction silently degrades.
- Clean legality — SEC filings are US-government public-domain records explicitly published for programmatic reuse.
Pricing
Pay-per-event:
- $0.001 per raw filing record — metadata + URL, no AI enrichment.
- $0.015 per AI-enriched filing brief — summary, key risks, exact financial highlights, plus any requested translations.
You're charged the enriched-record price only when enrich: true and a
brief is actually produced. No enrichment, no charge beyond the raw record.
Use cases
Read Apple's latest 10-K in under a minute, in Russian. Instead of a 300-page annual report, get the 5-sentence brief with XBRL-exact revenue and net income:
{ "tickersOrCIKs": ["AAPL"], "formTypes": ["10-K"], "maxItems": 1, "enrich": true, "targetLangs": ["ru"], "userAgentContact": "you@example.com" }
Monitor NVIDIA's quarterly earnings filings as they're published. Set
sinceDate on a scheduled daily/weekly run to get only NEW filings since the
last run — a filing alert feed with no duplicates:
{ "tickersOrCIKs": ["NVDA"], "formTypes": ["10-Q", "8-K"], "sinceDate": "2026-07-01", "enrich": true, "userAgentContact": "you@example.com" }
Track a whole portfolio's 8-K material events at once — mergers, executive changes, restatements — across dozens of tickers in one run, briefed in plain English instead of raw legal filing text:
{ "tickersOrCIKs": ["AAPL", "MSFT", "GOOGL", "AMZN"], "formTypes": ["8-K"], "maxItems": 100, "enrich": true, "userAgentContact": "you@example.com" }
Pull a foreign private issuer's 20-F annual report brief in Arabic for a GCC-based analyst who doesn't read English filings:
{ "tickersOrCIKs": ["BABA"], "formTypes": ["20-F"], "maxItems": 1, "enrich": true, "targetLangs": ["ar"], "userAgentContact": "you@example.com" }
FAQ
Which forms are supported? Any form type EDGAR lists — 10-K, 10-Q, 8-K,
20-F, 6-K, S-1, 13F, 4, 144... formTypes is an exact match against EDGAR's
form field.
How fresh is the data? Straight from EDGAR's live submissions API — new filings appear as soon as the SEC indexes them.
Can I monitor non-US issuers? Yes, as long as they file with the SEC (e.g. 20-F/6-K foreign private issuers).