SEC EDGAR Filings Scraper avatar

SEC EDGAR Filings Scraper

Pricing

from $1.00 / 1,000 results

Go to Apify Store
SEC EDGAR Filings Scraper

SEC EDGAR Filings 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.

Pricing

from $1.00 / 1,000 results

Rating

5.0

(20)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

20

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Scrape SEC EDGAR — the US Securities and Exchange Commission's public database of every filing every public US company makes. Annual reports (10-K), quarterly reports (10-Q), material event disclosures (8-K), insider transactions (Form 4), hedge-fund holdings (13F), proxy statements, IPO prospectuses, and more. HTTP-only via the SEC's official JSON API. No login, no proxy.

What this actor does

  • Resolves tickers (e.g. AAPL) or CIKs to company records via SEC's master ticker map
  • Fetches recent filings for each company from https://data.sec.gov/submissions/CIK<padded>.json
  • Filters by filing type (32 supported types), date range, and free-text keyword
  • Optionally fetches the primary document HTML and emits cleaned text (for keyword search across filing text)
  • Builds direct URLs to the filing index page, primary document, and EDGAR detail page
  • Honors SEC's 10-requests-per-second rate limit + required User-Agent header

Output per filing

  • cik (10-digit padded), cikInt, companyName, ticker, tickers[], exchange, sic, sicDescription
  • filingType — e.g. 10-K, 10-Q, 8-K, 4
  • accessionNumber — SEC's unique filing ID
  • filedAt — date filed
  • reportingPeriod — fiscal period the filing covers
  • acceptedAt — exact timestamp of acceptance
  • primaryDocFilename, primaryDocDescription
  • primaryDocUrl — direct link to the actual filing document
  • filingIndexUrl — search results page on EDGAR
  • filingDetailUrl — filing's detail page on EDGAR
  • sizeBytes, isXbrl, isInlineXbrl
  • primaryDocText (only when fetchPrimaryDocText=true) — plain-text content of the filing, capped at 100k chars
  • primaryDocTextLength
  • recordType: "filing", scrapedAt

Empty fields are omitted (no nulls).

Input

FieldTypeDefaultDescription
companiesarray["AAPL","MSFT"]Tickers (resolves automatically) or 10-digit CIKs
filingTypesarray["10-K","10-Q","8-K"]32 supported types: 10-K, 10-Q, 8-K, DEF 14A, S-1, 13F-HR, 4, 3, 5, etc.
dateRangeFromstringDrop filings filed before this ISO date
dateRangeTostringDrop filings filed after this ISO date
maxItemsPerCompanyint50Hard cap per company (1–1000)
maxItemsint500Global hard cap (1–10000)
fetchPrimaryDocTextboolfalseFetch + extract the filing document's plain text
containsKeywordstringOnly emit filings whose text contains this substring (implies fetchPrimaryDocText)
userAgentEmailstringapify-actor@noreply.apify.comContact email for SEC's required User-Agent header

Example: latest annual reports for tech giants

{
"companies": ["AAPL", "MSFT", "GOOGL", "META", "AMZN", "NVDA"],
"filingTypes": ["10-K"],
"maxItemsPerCompany": 5
}

Example: insider trades for a single company

{
"companies": ["TSLA"],
"filingTypes": ["4"],
"maxItemsPerCompany": 100
}
{
"companies": ["AAPL"],
"filingTypes": ["8-K"],
"fetchPrimaryDocText": true,
"containsKeyword": "acquisition",
"dateRangeFrom": "2024-01-01"
}

Example: hedge-fund holdings (13F)

{
"companies": ["0001067983"],
"filingTypes": ["13F-HR"],
"maxItemsPerCompany": 20
}

Use cases

  • Equity research — pull every 10-K and 10-Q for a portfolio
  • Insider trade alerts — daily run on Form 4 filings for executives at watched companies
  • M&A monitoringS-4 registrations + 8-K event disclosures filtered for "acquisition" keyword
  • IPO trackingS-1 and S-3 filings to spot upcoming listings
  • Hedge fund replication13F-HR filings to mirror prominent fund managers' positions
  • Compliance audits — verify filings for portfolio companies
  • Financial journalism — programmatic access to public filings without paying Bloomberg
  • XBRL data extractionisXbrl flag identifies machine-readable filings for downstream parsers

FAQ

Does it require a login or cookies? No. SEC EDGAR is fully public.

Is a proxy needed? No. SEC accepts requests from any IP, with a soft 10 req/sec rate limit.

Why does SEC require a User-Agent email? SEC's fair-access policy requires every API request to include a contact email so they can reach the operator if there's an issue. The actor uses a generic Apify-actor email by default; for production high-volume scraping, override with your own.

How fresh is the data? Real-time. SEC processes filings within minutes of submission.

What's the difference between cik and accessionNumber? cik identifies the company; accessionNumber identifies a specific filing. Each filing has a unique accession (e.g. 0000320193-24-000123).

Can I get the full filing text? Yes — set fetchPrimaryDocText: true to also fetch the primary document and emit cleaned plain text (capped at 100k chars per record). Combine with containsKeyword to filter to filings mentioning a specific term.

What's the difference between 10-K and 20-F? 10-K is for US-domiciled companies; 20-F is for foreign-domiciled companies (e.g. ADRs). Same purpose: annual report.

Can I scrape a private company? No — only US public companies and foreign companies that file with the SEC. Private companies don't file.

How is 13F-HR different from SC 13G? 13F-HR is a hedge fund's quarterly position list (all holdings >$100M AUM). SC 13G is a 5%+ ownership disclosure for any single security. Both useful for tracking institutional money flows.

What's an XBRL filing? Machine-readable structured filing format. The actor's isXbrl and isInlineXbrl flags tell you which filings have parseable structured data — useful for downstream financial-data extraction.