SEC Filings Monitor avatar

SEC Filings Monitor

Pricing

$5.00 / 1,000 filing saveds

Go to Apify Store
SEC Filings Monitor

SEC Filings Monitor

Track SEC EDGAR filings by CIK or company name and collect 10-K, 10-Q and 8-K records with dates, accession numbers and direct document links.

Pricing

$5.00 / 1,000 filing saveds

Rating

0.0

(0)

Developer

Hamza

Hamza

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Categories

Share

Track official SEC EDGAR filings by company CIK or company name. Collect 10-K, 10-Q, 8-K and other forms with filing dates, accession numbers and direct links to the primary filing document.

What it does

  • Looks up one or more companies by 10-digit CIK, or finds the CIK from a company name or ticker.
  • Reads the official EDGAR filing history for each company.
  • Keeps only the form types you ask for (for example 10-K, 10-Q, 8-K) and only filings on or after your chosen date.
  • Returns one clean record per filing with a direct link to the filing and its primary document.

Typical uses: earnings-season tracking, 8-K alert lists, audit and compliance reviews, competitor disclosure monitoring, academic filing datasets.

Inputs

FieldTypeDefaultDescription
ciksstring array[]10-digit CIKs with leading zeros, e.g. ["0000320193"]. Provide this or companyQuery.
companyQuerystring""Company name or ticker used when ciks is empty, e.g. "Apple" or "AAPL".
formsstring array["10-K", "10-Q", "8-K"]Form types to keep. Also supports 10-K/A, 10-Q/A, 8-K/A, S-1, 424B4, DEF 14A, 13F-HR, 4, 3, 5 and others.
maxFilingsinteger50Maximum filings to collect in total (1-500).
sinceDatestring""Only keep filings filed on or after this date (YYYY-MM-DD). Empty means no date filter.

Example input:

{
"ciks": ["0000320193", "0000789019"],
"forms": ["10-K", "10-Q", "8-K"],
"maxFilings": 50,
"sinceDate": "2024-01-01"
}

Output

One dataset record per filing:

{
"cik": "0000320193",
"companyName": "Apple Inc.",
"form": "10-K",
"filedAt": "2024-11-01",
"accessionNumber": "0000320193-24-000123",
"filingUrl": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000123/aapl-20240928.htm",
"primaryDocument": "aapl-20240928.htm"
}
FieldDescription
cik10-digit company CIK.
companyNameCompany name as listed by EDGAR.
formFiling form type (10-K, 10-Q, 8-K, ...).
filedAtFiling date (YYYY-MM-DD).
accessionNumberEDGAR accession number.
filingUrlDirect link to the primary filing document.
primaryDocumentPrimary document file name.

Pricing

Pay per filing saved: $0.005 per filing-scraped event. One event is charged for each filing row written to the dataset. A run collecting 50 filings costs about $0.25; 500 filings cost about $2.50.

FAQ

Do I need the CIK? No. If you only know the company name or ticker, put it in companyQuery and the actor resolves the CIK first.

Which forms can I request? Any EDGAR form type. The defaults are 10-K, 10-Q and 8-K. Amendments such as 10-K/A also work — just list them in forms.

How do I track only recent filings? Set sinceDate to a cutoff like "2024-01-01". Older filings are skipped before counting toward maxFilings.

What does filingUrl open? The primary filing document on the official EDGAR archive (the main 10-K / 10-Q / 8-K document), ready to read or download.

How many companies can I check at once? List several CIKs in ciks. Results are collected in order until maxFilings is reached, with duplicates removed.