# US SEC EDGAR Filings & Form 4 Insider Trades Monitor (`richigga/us-sec-edgar-company-filings-monitor`) Actor

Extract and monitor official US SEC EDGAR corporate filings (10-K, 10-Q, 8-K, Form 4 Insider Trades, 13F) by stock ticker or CIK with instant document URLs.

- **URL**: https://apify.com/richigga/us-sec-edgar-company-filings-monitor.md
- **Developed by:** [Jiani Peng](https://apify.com/richigga) (community)
- **Categories:** Business, Developer tools
- **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 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

## US SEC EDGAR Filings & Form 4 Insider Trades Monitor

An autonomous, ultra-fast Apify Actor that extracts and monitors official **US Securities and Exchange Commission (SEC) EDGAR corporate filings** by stock ticker or CIK with direct document links.

Ideal for quantitative hedge funds, financial analysts, equity research teams, compliance officers, and autonomous AI agents tracking real-time corporate disclosures and executive insider trades.

***

### 📈 Supported SEC Forms

- **Form 4**: Real-time officer & director insider stock buys/sales.
- **10-K**: Comprehensive annual audited financial reports.
- **10-Q**: Quarterly financial performance reports.
- **8-K**: Unscheduled material corporate events, executive changes, M\&A announcements.
- **Form 144**: Notice of proposed sale of restricted securities.
- **Schedule 13D / 13G**: Activist and passive institutional stake disclosures (> 5% ownership).
- **Form 13F**: Quarterly institutional investment manager equity holdings.
- **DEF 14A**: Annual shareholder proxy statements & executive compensation.
- **S-1**: Initial public offering (IPO) registration statements.

***

### 📥 Input Parameters

| Field | Type | Default | Description |
|---|---|---|---|
| `tickersOrCik` | `Array` | `["AAPL", "NVDA", "MSFT"]` | Stock tickers (e.g. `TSLA`, `AMZN`, `PLTR`) or 10-digit CIK numbers. |
| `forms` | `Array` | `["10-K", "10-Q", "8-K", "4"]` | SEC Form types to filter. |
| `maxResultsPerCompany` | `Integer` | `50` | Maximum number of filings per company (1 to 500). |

***

### 📤 Output Format

```json
{
  "ticker": "AAPL",
  "cik": "0000320193",
  "companyName": "Apple Inc.",
  "sic": "3571",
  "sicDescription": "Electronic Computers",
  "form": "4",
  "filingDate": "2026-08-15",
  "reportDate": "2026-08-14",
  "accessionNumber": "0000320193-26-000045",
  "primaryDocument": "form4.xml",
  "primaryDocDescription": "FORM 4 STATEMENT OF CHANGES IN BENEFICIAL OWNERSHIP",
  "documentUrl": "https://www.sec.gov/Archives/edgar/data/320193/000032019326000045/form4.xml",
  "filingDetailUrl": "https://www.sec.gov/ix?doc=/Archives/edgar/data/320193/000032019326000045/form4.xml",
  "isXBRL": true,
  "isInlineXBRL": false
}
```

***

### 🤖 Python & Node.js SDK Integration

```python
from apify_client import ApifyClient

client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("Richigga/us-sec-edgar-company-filings-monitor").call(
    run_input={
        "tickersOrCik": ["NVDA", "TSLA"],
        "forms": ["4", "8-K"],
        "maxResultsPerCompany": 20
    }
)

for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(f"[{item['form']}] {item['companyName']}: {item['documentUrl']}")
```

***

### 💰 Unit Economics & Performance

- **Pricing Model**: Pay Per Event / Pay Per Request (`$0.003` per run)
- **External Cost**: `$0.00` (Official public SEC EDGAR API)
- **Execution Speed**: `< 300ms` per company
- **Gross Margin**: `> 97%`

***

### 📄 License

Apache-2.0. Compliant with SEC Fair Access guidelines.

# Actor input Schema

## `tickersOrCik` (type: `array`):

List of company stock tickers (e.g. 'AAPL', 'NVDA', 'MSFT', 'TSLA', 'AMZN') or 10-digit CIK numbers.

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

Filter by SEC Form types. Leave empty for all forms.

## `maxResultsPerCompany` (type: `integer`):

Maximum number of recent filings to return per company.

## Actor input object example

```json
{
  "tickersOrCik": [
    "AAPL",
    "NVDA",
    "MSFT"
  ],
  "forms": [
    "10-K",
    "10-Q",
    "8-K",
    "4"
  ],
  "maxResultsPerCompany": 50
}
```

# Actor output Schema

## `output` (type: `string`):

Standard SEC filing summary

# 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 = {
    "tickersOrCik": [
        "AAPL",
        "NVDA",
        "MSFT"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("richigga/us-sec-edgar-company-filings-monitor").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 = { "tickersOrCik": [
        "AAPL",
        "NVDA",
        "MSFT",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("richigga/us-sec-edgar-company-filings-monitor").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 '{
  "tickersOrCik": [
    "AAPL",
    "NVDA",
    "MSFT"
  ]
}' |
apify call richigga/us-sec-edgar-company-filings-monitor --silent --output-dataset

```

## MCP server setup

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

```

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/j1hzSlXsJqvlUoxfz/builds/U1ClkrTEOKqFblnUz/openapi.json
