# SEC EDGAR Tracker — Insider Filings, 13F, 8K, 10K (`gochujang/sec-edgar-tracker`) Actor

Live SEC EDGAR latest filings feed: 10-K/10-Q/8-K/S-1/20-F/13F-HR/DEF-14A/424B5 and more. Filter by form type, CIK, or company name. Returns filer, CIK, role, filed date, accession #, document URL and size. Compliant SEC User-Agent. No API key.

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

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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 Filing Tracker

> Live SEC EDGAR latest filings feed: **10-K, 10-Q, 8-K, S-1, 20-F, 13F-HR, DEF 14A, 424B5** and more. Filter by form type, CIK, or company name. **No API key.**

---

### Why this exists

SEC EDGAR exposes every public-company filing in real time via atom feeds, but the official UI is from 1997. Bloomberg / Capital IQ charge thousands per seat per year for the same data with a nicer UI.

This actor pulls multiple form-type feeds in parallel, parses the atom XML, and returns one clean row per filing — ready to drop into Sheets, a database, or trigger a webhook.

---

### What you get per row

| Field | Example | Notes |
|---|---|---|
| `form` | `10-K` | parsed from title (supports hyphenated codes) |
| `form_requested` | `10-K` | feed type requested |
| `filer` | `J M SMUCKER Co` | company name |
| `cik` | `91419` | SEC central index key (without leading zeros) |
| `filer_role` | `Filer` | Filer / Issuer / Reporting / etc |
| `filed_date` | `2026-06-09` | filing date |
| `accession_no` | `0000091419-26-000050` | unique filing ID |
| `size_kb` | `1240` | filing size |
| `filing_url` | `https://www.sec.gov/Archives/...` | direct link to filing |
| `title` | `10-K - J M SMUCKER Co (91419) (Filer)` | raw atom title |

---

### Form types covered (default)

| Code | What it is |
|---|---|
| `10-K` | Annual report |
| `10-Q` | Quarterly report |
| `8-K` | Material event (acquisitions, departures, earnings) |
| `S-1` | IPO registration |
| `S-3` | Shelf registration |
| `20-F` | Foreign company annual report |
| `13F-HR` | Institutional holder quarterly portfolio (Buffett's filings!) |
| `DEF 14A` | Proxy statement |
| `424B5` | Prospectus / pricing supplement |

Override `forms` to track any other valid EDGAR form code.

---

### Use cases

1. **8-K monitoring** — Catch material events the moment they hit EDGAR
2. **13F tracking** — Discover what hedge funds added/removed each quarter
3. **IPO pipeline** — Monitor fresh S-1 filings for upcoming IPOs
4. **Insider compliance** — Combine with Form 4 (use [Insider Trading Tracker](https://apify.com/gochujang/insider-trading-tracker))
5. **Compliance archive** — Daily snapshot of all filings for your covered tickers

---

### Quick start

#### Default — recent filings of all major form types
```json
{}
````

#### Track Berkshire Hathaway's 13F filings

```json
{
  "forms": ["13F-HR"],
  "ciksFilter": ["1067983"]
}
```

#### Apple-specific filings (any form)

```json
{
  "companyContains": "apple",
  "countPerForm": 60,
  "limit": 100
}
```

#### Daily 8-K digest to Telegram

```json
{
  "forms": ["8-K"],
  "countPerForm": 100,
  "alertOnAny": true,
  "telegramBotToken": "YOUR_BOT_TOKEN",
  "telegramChatId": "YOUR_CHAT_ID"
}
```

***

### Pricing

**Pay-Per-Event**: `$0.002 per filing row returned.`

| Run | Rows | Cost |
|---|---|---|
| Default (9 forms × 40) | ~360 → 200 (limit) | $0.40 |
| 8-K only, 100 latest | 100 | $0.20 |
| Watch a single CIK | 5–10 | $0.01–0.02 |

vs Edgar Online subscription ($300+/mo), with the same source data.

***

### Compliance

The SEC's [Fair Use Policy](https://www.sec.gov/os/accessing-edgar-data) requires that requests carry a descriptive `User-Agent` with a contact email. This actor sets `User-Agent: Apify Forge SEC EDGAR Tracker <your-email>` — pass `contactEmail` in input to override the default.

***

### Data source

[SEC EDGAR Atom Feeds](https://www.sec.gov/cgi-bin/browse-edgar?action=getcurrent) — free, public, real-time.

***

### Related actors (same author)

- [Insider Trading Tracker](https://apify.com/gochujang/insider-trading-tracker) — Parses Form 4 XML for actual share-by-share trades
- [Stock Earnings Calendar Tracker](https://apify.com/gochujang/stock-earnings-tracker)
- [Treasury Yield Curve Tracker](https://apify.com/gochujang/treasury-yield-tracker)
- [Economic Calendar Tracker](https://apify.com/gochujang/economic-calendar-tracker)

***

### Feedback

A short review helps researchers find it: [Leave a review on Apify Store](https://apify.com/gochujang/sec-edgar-tracker#reviews)

# Actor input Schema

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

SEC form types to fetch. Defaults to common ones.

## `ciksFilter` (type: `array`):

Only include filings from these CIK numbers (e.g. 320193 = Apple). Empty = all.

## `companyContains` (type: `string`):

Case-insensitive substring filter on filer name (e.g. 'apple').

## `countPerForm` (type: `integer`):

How many of the latest filings to pull for each form type.

## `limit` (type: `integer`):

Max combined rows to return after filters.

## `contactEmail` (type: `string`):

SEC requires an identifying User-Agent with a contact. Provide your email.

## `alertOnAny` (type: `boolean`):

Send a digest to Telegram after run.

## `telegramBotToken` (type: `string`):

Telegram bot token.

## `telegramChatId` (type: `string`):

Chat ID.

## Actor input object example

```json
{
  "forms": [
    "10-K",
    "10-Q",
    "8-K",
    "S-1",
    "S-3",
    "20-F",
    "13F-HR",
    "DEF 14A",
    "424B5"
  ],
  "ciksFilter": [],
  "companyContains": "",
  "countPerForm": 40,
  "limit": 200,
  "contactEmail": "research@example.com",
  "alertOnAny": false,
  "telegramChatId": ""
}
```

# Actor output Schema

## `dataset` (type: `string`):

No description

## `summary` (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 = {};

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

# Run the Actor and wait for it to finish
run = client.actor("gochujang/sec-edgar-tracker").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 '{}' |
apify call gochujang/sec-edgar-tracker --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "SEC EDGAR Tracker — Insider Filings, 13F, 8K, 10K",
        "description": "Live SEC EDGAR latest filings feed: 10-K/10-Q/8-K/S-1/20-F/13F-HR/DEF-14A/424B5 and more. Filter by form type, CIK, or company name. Returns filer, CIK, role, filed date, accession #, document URL and size. Compliant SEC User-Agent. No API key.",
        "version": "0.1",
        "x-build-id": "QfJ8mu7lrhmqCrGOn"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/gochujang~sec-edgar-tracker/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-gochujang-sec-edgar-tracker",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/gochujang~sec-edgar-tracker/runs": {
            "post": {
                "operationId": "runs-sync-gochujang-sec-edgar-tracker",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/gochujang~sec-edgar-tracker/run-sync": {
            "post": {
                "operationId": "run-sync-gochujang-sec-edgar-tracker",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "forms": {
                        "title": "Form types",
                        "type": "array",
                        "description": "SEC form types to fetch. Defaults to common ones.",
                        "default": [
                            "10-K",
                            "10-Q",
                            "8-K",
                            "S-1",
                            "S-3",
                            "20-F",
                            "13F-HR",
                            "DEF 14A",
                            "424B5"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "ciksFilter": {
                        "title": "CIK filter",
                        "type": "array",
                        "description": "Only include filings from these CIK numbers (e.g. 320193 = Apple). Empty = all.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "companyContains": {
                        "title": "Company name contains",
                        "type": "string",
                        "description": "Case-insensitive substring filter on filer name (e.g. 'apple').",
                        "default": ""
                    },
                    "countPerForm": {
                        "title": "Filings per form",
                        "minimum": 10,
                        "maximum": 100,
                        "type": "integer",
                        "description": "How many of the latest filings to pull for each form type.",
                        "default": 40
                    },
                    "limit": {
                        "title": "Max total rows",
                        "minimum": 1,
                        "maximum": 2000,
                        "type": "integer",
                        "description": "Max combined rows to return after filters.",
                        "default": 200
                    },
                    "contactEmail": {
                        "title": "Contact email",
                        "type": "string",
                        "description": "SEC requires an identifying User-Agent with a contact. Provide your email.",
                        "default": "research@example.com"
                    },
                    "alertOnAny": {
                        "title": "Telegram alert",
                        "type": "boolean",
                        "description": "Send a digest to Telegram after run.",
                        "default": false
                    },
                    "telegramBotToken": {
                        "title": "Telegram Bot Token",
                        "type": "string",
                        "description": "Telegram bot token."
                    },
                    "telegramChatId": {
                        "title": "Telegram Chat ID",
                        "type": "string",
                        "description": "Chat ID.",
                        "default": ""
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
