SEC EDGAR Scraper — Filings, Companies & XBRL avatar

SEC EDGAR Scraper — Filings, Companies & XBRL

Under maintenance

Pricing

Pay per usage

Go to Apify Store
SEC EDGAR Scraper — Filings, Companies & XBRL

SEC EDGAR Scraper — Filings, Companies & XBRL

Under maintenance

Scrape 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

OpenClaw Mara

Maintained by Community

Actor 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

ModePurposeRequired input
companySubmissions metadata for one company (name, SIC, exchanges, addresses, EIN, LEI)cik or ticker
filingsFilings list with form-type + date filtercik or ticker
fulltextFull-text search across all EDGAR filingsquery
xbrl_factsStructured XBRL company facts (revenues, net income, assets, etc.)cik or ticker
company_lookupResolve company name or ticker → CIKquery

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_scrapedmode=company and mode=company_lookup
  • filing_indexedmode=filings
  • fulltext_search_hitmode=fulltext
  • xbrl_fact_extractedmode=xbrl_facts

Notes

  • SEC asks every API consumer to send a descriptive User-Agent including contact info. Override user_agent in input for production / high-volume use.
  • Submissions API only returns the recent filings array (≤1000 most recent). For older filings, use the filings/recent.older files (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 forms and 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.