# SEC EDGAR Filings by Company: 10-K, 10-Q, 8-K list with links (`steadydata/sec-edgar-filings`) Actor

Recent SEC EDGAR filings per company by ticker or CIK, up to 200 companies a run and 1,000 filings each: form, filing and report dates, 8-K items, accession number, document and index links, plus SIC, state and exchange per company, from the SEC's JSON API. Filter on form and date. Pay per filing.

- **URL**: https://apify.com/steadydata/sec-edgar-filings.md
- **Developed by:** [Steadydata Team](https://apify.com/steadydata) (community)
- **Categories:** Business, News, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.55 / 1,000 filing listeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## SEC EDGAR Filings by Company: 10-K, 10-Q, 8-K list with links

Recent SEC EDGAR filings per company by ticker or CIK, up to 200 companies a run and 1,000 filings each: form, filing and report dates, 8-K items, accession number, document and index links, plus SIC, state and exchange per company, from the SEC's JSON API. Filter on form and date. Pay per filing.

### Why this scraper

- **Only delivered results are charged.** Inputs that fail come back as clear error
  records at no cost.
- Straight from the SEC's own JSON API, one call per company: the submissions file carries the company header and its latest 1,000 filings at once. Measured on the platform: 80 filings of three companies in 7 seconds for a fifth of a cent. Tickers are resolved through the SEC's official ticker list, read once per run.
- Every row is ready to use: form type, filing date, period of report, acceptance timestamp, the 8-K item codes (2.02, 9.01), accession number, a direct link to the primary document and to the filing index, file size and XBRL flags, plus the company's CIK, tickers, exchanges, SIC code and description, state of incorporation, fiscal year end and filer category.
- Filter on form types (`10-K`, `10-Q`, `8-K`, `S-1`, `4`, `13F-HR`, `DEF 14A`, any EDGAR form) and on a filed-since date, so a watchlist of companies becomes a list of exactly the filings you care about.

### Who this is for

Paste tickers, CIKs or EDGAR company URLs in `companies` (up to 200 per run), list the `forms` you want (empty means every form), optionally set `sinceDate` (YYYY-MM-DD) and `maxFilingsPerCompany` (default 50, ceiling 1,000, newest first). Built for filing monitors and alerts, earnings and event tracking through 8-K items, building document sets for analysis, and compliance or research workflows that need the official links rather than a copy.

### Who this is not for

This lists filings; it does not read them. Financial figures, the text of a 10-K or the trades inside a Form 4 are behind the `documentUrl`, not on the row. The SEC API carries the latest 1,000 filings per company; for a heavy filer that reaches back a few years, not to 1994. Only SEC registrants are covered (US-listed companies and foreign filers with a CIK); a ticker that is not in the SEC's list comes back as a free `NOT_FOUND` row. `items` is filled for 8-K filings only and `reportDate` is empty where the SEC has none (some Form 4 and S-8 filings). The SEC asks automated readers to identify themselves and to stay under ten requests per second; this actor does both.

### Input example

```json
{
    "companies": [
        "AAPL",
        "320193",
        "TSLA"
    ],
    "forms": [
        "10-K",
        "10-Q",
        "8-K"
    ],
    "maxFilingsPerCompany": 50
}
```

### Output example

- `cik`
- `companyName`
- `tickers`
- `exchanges`
- `sic`
- `sicDescription`
- `stateOfIncorporation`
- `fiscalYearEnd`
- `filerCategory`
- `form`
- `filingDate`
- `reportDate`
- `acceptedAt`
- `items`
- `accessionNumber`
- `primaryDocument`
- `primaryDocDescription`
- `documentUrl`
- `indexUrl`
- `sizeBytes`
- `isXbrl`
- `isInlineXbrl`

Error codes: `INVALID_COMPANY`, `NOT_FOUND`, `NO_FILINGS`, `DUPLICATE_INPUT`, `BLOCKED`.

One delivered row looks like this:

```json
{
  "cik": "320193",
  "companyName": "Apple Inc.",
  "tickers": [
    "AAPL"
  ],
  "exchanges": [
    "Nasdaq"
  ],
  "sic": "3571",
  "sicDescription": "Electronic Computers",
  "stateOfIncorporation": "CA",
  "fiscalYearEnd": "0926",
  "filerCategory": "Large accelerated filer",
  "form": "10-Q",
  "filingDate": "2026-07-31",
  "reportDate": "2026-06-27",
  "acceptedAt": "2026-07-31T10:01:02.000Z",
  "items": null,
  "accessionNumber": "0000320193-26-000020",
  "primaryDocument": "aapl-20260627.htm",
  "primaryDocDescription": "10-Q",
  "documentUrl": "https://www.sec.gov/Archives/edgar/data/320193/000032019326000020/aapl-20260627.htm",
  "indexUrl": "https://www.sec.gov/Archives/edgar/data/320193/000032019326000020/0000320193-26-000020-index.htm",
  "sizeBytes": 5946811,
  "isXbrl": true,
  "isInlineXbrl": true,
  "status": "ok"
}
```

### Related actors from steadydata

- google-finance-quotes (publishing soon): the share price of the same company, live
- [google-patent-details](https://apify.com/steadydata/google-patent-details): what the company patented
- [google-news](https://apify.com/steadydata/google-news): press coverage around a filing date

### Pricing

Pay per event: one `filing-listed` event per delivered result. No charge for inputs
that fail, no separate platform-usage surcharge.

**Free Apify plan:** this actor delivers up to 25 rows per run for accounts on the Apify free
plan, and then stops with a message. That limit is set by us, not by Apify. It exists so the
actor keeps paying for itself for the people who do pay. Any paid Apify plan runs it at full
size, billed per delivered row, with failed rows never charged.

**Reviews:** if this actor saves you time, a short review on this page is the one thing that
helps most. Ratings are what other buyers look at first, and we have no other way to ask.

### FAQ

**Is personal data collected?**
No. Rows carry the company and the filing metadata. Insider filings (Form 3, 4, 5) are listed by form and date only; the names inside them are not read.

**How do I get only new filings every day?**
Run with `sinceDate` set to yesterday and the forms you follow; companies with nothing new come back as a free `NO_FILINGS` row, so a daily watchlist run costs only the filings that actually appeared.

**What is the difference between `filingDate` and `reportDate`?**
`filingDate` is when the SEC received it; `reportDate` is the period or event it covers (the quarter end of a 10-Q, the event date of an 8-K). `acceptedAt` is the exact acceptance timestamp, useful for ordering same-day filings.

**Can I search by company name?**
Not in this actor; the SEC's ticker list has no fuzzy search. Use the ticker or the CIK, which is on every EDGAR company page and in the URL of any filing.

**What does a run cost when a ticker is unknown?**
Nothing. `NOT_FOUND`, `NO_FILINGS`, `INVALID_COMPANY` and `BLOCKED` rows are free; only delivered filings are charged.

**What happens when the source changes?**
Sources change from time to time; that is the nature of this work. The actor is
monitored daily and fixed fast, and while it is broken you are not charged, because
only delivered results cost anything.

# Changelog

This Actor's version history is a separate document: https://apify.com/steadydata/sec-edgar-filings/changelog.md

# Actor input Schema

## `companies` (type: `array`):

One per row, up to 200: a ticker (AAPL), a CIK (320193) or an EDGAR company URL.

## `forms` (type: `array`):

Only these forms, for example 10-K, 10-Q, 8-K, S-1, 4, 13F-HR, DEF 14A. Empty means every form.

## `sinceDate` (type: `string`):

Only filings filed on or after this date (YYYY-MM-DD). Empty means no date limit.

## `maxFilingsPerCompany` (type: `integer`):

Cost ceiling per company, newest first; the SEC API carries the latest 1,000 filings.

## Actor input object example

```json
{
  "companies": [
    "AAPL",
    "320193",
    "TSLA"
  ],
  "forms": [
    "10-K",
    "10-Q",
    "8-K"
  ],
  "maxFilingsPerCompany": 50
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "companies": [
        "AAPL",
        "320193",
        "TSLA"
    ],
    "forms": [
        "10-K",
        "10-Q",
        "8-K"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("steadydata/sec-edgar-filings").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "companies": [
        "AAPL",
        "320193",
        "TSLA",
    ],
    "forms": [
        "10-K",
        "10-Q",
        "8-K",
    ],
}

# Run the Actor and wait for it to finish
run = client.actor("steadydata/sec-edgar-filings").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "companies": [
    "AAPL",
    "320193",
    "TSLA"
  ],
  "forms": [
    "10-K",
    "10-Q",
    "8-K"
  ]
}' |
apify call steadydata/sec-edgar-filings --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,steadydata/sec-edgar-filings"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/HHmB0Fjg3kf6IZ0db/builds/2aVQqeaO3Xh9uDS07/openapi.json
