# SEC EDGAR Filings — Company Filings by Ticker or CIK (`omao/sec-edgar`) Actor

Fetch a company's SEC filings (10-K, 10-Q, 8-K and more) by ticker or CIK, straight from the official SEC EDGAR API. One clean JSON row per filing with form type, dates, accession number and document URL. No anti-bot, always up to date.

- **URL**: https://apify.com/omao/sec-edgar.md
- **Developed by:** [Marouane Oulabass](https://apify.com/omao) (community)
- **Categories:** Developer tools, Business
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.44 / 1,000 filings

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/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## SEC EDGAR Filings — Company Filings by Ticker or CIK

**Get any US public company's SEC filings as clean JSON — straight from the official SEC EDGAR source.** Give this actor a ticker (like `AAPL`) or a CIK number and get back a tidy row per filing: form type (10-K, 10-Q, 8-K…), filing and report dates, accession number and a direct document URL. Always up to date, no API key, no anti-bot.

> AI-agent ready: this Actor is callable and payable by AI agents via [x402](https://docs.apify.com/platform/integrations/x402) (USDC on Base), no Apify account required.

Stop scraping the EDGAR website by hand. Pull structured filing data for research, monitoring, compliance and finance apps in seconds.

### Who uses this

- 📈 **Investors & analysts** — track 10-K/10-Q/8-K filings for the companies you follow.
- 🏦 **Fintech & data teams** — feed a clean filings dataset into your app or pipeline.
- 🤖 **AI / LLM & RAG pipelines** — get filing metadata and document URLs to ingest reports.
- ⚖️ **Compliance & legal** — monitor disclosures, insider forms and material events.
- 🔎 **Researchers & journalists** — build datasets across many companies at once.

### What you get — one clean row per filing

| Field | Description |
|---|---|
| `ticker` | Company ticker |
| `company` | Company name |
| `cik` | 10-digit SEC CIK |
| `form` | Filing type (10-K, 10-Q, 8-K, 4, S-1…) |
| `filingDate` | Date filed with the SEC |
| `reportDate` | Period-of-report date |
| `accessionNumber` | SEC accession number |
| `primaryDocument` | Primary document filename |
| `primaryDocDescription` | Document description |
| `documentUrl` | **Direct URL to the filing document** |
| `inputCompany`, `scrapedAt` | Provenance |

### Example

**Input**

```json
{ "companies": ["AAPL", "TSLA"], "formTypes": ["10-K", "10-Q", "8-K"], "maxFilingsPerCompany": 40 }
```

**Output (one item)**

```json
{
  "ticker": "AAPL",
  "company": "Apple Inc.",
  "cik": "0000320193",
  "form": "10-K",
  "filingDate": "2025-11-01",
  "reportDate": "2025-09-27",
  "accessionNumber": "0000320193-25-000106",
  "primaryDocument": "aapl-20250927.htm",
  "documentUrl": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000106/aapl-20250927.htm"
}
```

### Why this actor

- ✅ **Official source** — data comes straight from the SEC EDGAR API, always current.
- 🎯 **Ticker *or* CIK** — look companies up however you have them.
- 🗂️ **Filter by form type** — 10-K, 10-Q, 8-K, Form 4 and more, or fetch all.
- 🔗 **Direct document URLs** — jump straight to the actual filing.
- ⚡ **Fast & affordable** — pay only per filing returned. No anti-bot, no key.

### Input options

- `companies` *(required)* — tickers (e.g. `AAPL`) or CIK numbers.
- `formTypes` — filter by SEC form types (e.g. `10-K`, `10-Q`, `8-K`). Leave empty for all.
- `maxFilingsPerCompany` — cap the most-recent filings per company (default 40).

### FAQ

**Ticker or CIK?** Either — pass tickers like `AAPL` or 10-digit CIK numbers; both work.

**Which forms are covered?** All EDGAR form types — 10-K, 10-Q, 8-K, Form 4, S-1, DEF 14A and more. Use `formTypes` to filter.

**How fresh is the data?** Live from the official SEC EDGAR API on every run — as current as the SEC itself.

**Do I get the actual document?** Yes — every row includes a `documentUrl` linking directly to the filing.

**Can I query many companies at once?** Yes — pass a list of tickers/CIKs; every row carries its own company and filing metadata.

**Can I export to CSV/Excel/Google Sheets?** Yes — the dataset exports to JSON, CSV, Excel and HTML, or pull it via the API.

**What does it cost?** Pay-per-filing — you're only charged for filings actually returned.

***

*Tip: schedule this on your watchlist and diff `accessionNumber`s to get alerted the moment a company files.*

# Actor input Schema

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

Company tickers (e.g. AAPL) or CIK numbers to fetch SEC filings for.

## `formTypes` (type: `array`):

Filter by SEC form types, e.g. 10-K, 10-Q, 8-K. Leave empty for all.

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

Cap the number of (most recent) filings returned per company.

## `healthCheckMode` (type: `boolean`):

Internal monitoring: fetch a canary company's filings and FAIL if broken (no billing).

## Actor input object example

```json
{
  "companies": [
    "AAPL",
    "TSLA",
    "0000320193"
  ],
  "formTypes": [
    "10-K",
    "10-Q",
    "8-K"
  ],
  "maxFilingsPerCompany": 40,
  "healthCheckMode": false
}
```

# Actor output Schema

## `filings` (type: `string`):

All SEC filings (form type, dates, accession number, document URL).

# 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",
        "MSFT"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("omao/sec-edgar").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",
        "MSFT",
    ] }

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

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).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",
    "MSFT"
  ]
}' |
apify call omao/sec-edgar --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=omao/sec-edgar",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/ZQYpySdwlkmpOpfbg/builds/2YGAleDIBI4LukbgE/openapi.json
