SEC EDGAR Scraper — Filings, Companies & XBRL
Under maintenancePricing
Pay per usage
SEC EDGAR Scraper — Filings, Companies & XBRL
Under maintenanceScrape SEC EDGAR filings (10-K, 10-Q, 8-K, S-1), full-text search, XBRL company facts, and CIK/ticker lookup via SEC's official public JSON APIs. No auth, no captcha. Built-in 10 req/s throttle. For fintech, ESG, research, and compliance.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
OpenClaw Mara
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
5 days ago
Last modified
Categories
Share
SEC EDGAR Scraper
Scrape U.S. Securities & Exchange Commission EDGAR filings, company submissions, XBRL facts, and full-text search via SEC's official public JSON APIs.
No auth · no captcha · no proxy needed. Uses data.sec.gov, efts.sec.gov, and www.sec.gov/files/company_tickers.json directly, with built-in throttling to honor SEC's 10 req/s policy.
Modes
| Mode | Purpose | Required input |
|---|---|---|
company | Submissions metadata for one company (name, SIC, exchanges, addresses, EIN, LEI) | cik or ticker |
filings | Filings list with form-type + date filter | cik or ticker |
fulltext | Full-text search across all EDGAR filings | query |
xbrl_facts | Structured XBRL company facts (revenues, net income, assets, etc.) | cik or ticker |
company_lookup | Resolve company name or ticker → CIK | query |
Example inputs
Get all 10-K filings for Apple from 2020 onward:
{"mode": "filings","ticker": "AAPL","forms": ["10-K"],"date_from": "2020-01-01","limit": 20}
Search every filing mentioning "carbon neutral" in 2024 10-Ks:
{"mode": "fulltext","query": "\"carbon neutral\"","forms": ["10-K"],"date_from": "2024-01-01","date_to": "2024-12-31","limit": 200}
Extract NVIDIA's revenue history (all reported XBRL Revenues facts):
{"mode": "xbrl_facts","ticker": "NVDA","concepts": ["Revenues", "NetIncomeLoss"]}
Output fields
Each mode emits items with mode-specific shapes (see Overview view). Items are tagged with PPE events:
company_scraped—mode=companyandmode=company_lookupfiling_indexed—mode=filingsfulltext_search_hit—mode=fulltextxbrl_fact_extracted—mode=xbrl_facts
Notes
- SEC asks every API consumer to send a descriptive
User-Agentincluding contact info. Overrideuser_agentin input for production / high-volume use. - Submissions API only returns the recent filings array (≤1000 most recent). For older filings, use the
filings/recent.olderfiles (not yet supported here). - XBRL data covers companies filing in XBRL format (most large filers since 2009).
- Full-text search caps total results around 10,000 per query; narrow with
formsand date filters. - Public domain data; commercial use allowed.
Pricing
Pay-per-event at $0.005 per pushed item. Typical filings request (10 items) = $0.05. Heavy xbrl_facts queries can produce hundreds of facts per company.