# SEC Activist 13D/13G Monitor (`szopers/sec-activist-13d-monitor`) Actor

Monitors SEC EDGAR for new 13D/13G filings by activist investors (e.g. Saba Capital) and flags brand-new campaigns — the first 13D ever filed on a given target company.

- **URL**: https://apify.com/szopers/sec-activist-13d-monitor.md
- **Developed by:** [Michał Szopa](https://apify.com/szopers) (community)
- **Categories:** Agents, AI, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $20.00 / 1,000 filing founds

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## 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 Activist 13D/13G Monitor

Monitors SEC EDGAR for new **Schedule 13D/13G filings by activist investors** and — unlike generic EDGAR scrapers — flags **brand-new campaigns**: the first 13D an activist has *ever* filed on a given target company.

Default target: **Saba Capital Management** (CIK 1510281), the most active closed-end fund activist (~10 new campaigns per year). Works with any filer CIK: Bulldog Investors, Karpus, City of London, or any investor you want to track.

### Why the new-campaign flag matters

A 13D filing stream is noisy: most filings are amendments or repeat filings on companies the activist already targeted. The actionable event is the **first original 13D on a new target** — that is when a campaign starts.

This actor computes the flag against the activist's **complete filing history** (not just the lookback window), using the same event definition as a published-style event study of 121 activist CEF campaigns (2015–2026): targets outperformed a closed-end fund basket by **+2.65% after 63 trading days (t=4.3)** and **+3.6% after 126 days**, with the discount closing in 81% of campaigns. Past performance does not guarantee future results — see the disclaimer below.

### Input

| Field | Default | Description |
|---|---|---|
| `activistCiks` | `["1510281"]` | Filer CIKs to monitor (Saba Capital by default). Find a CIK via [EDGAR company search](https://www.sec.gov/cgi-bin/browse-edgar). |
| `lookbackDays` | `45` | Reporting window. The new-campaign flag always uses full history. |
| `includeSchedule13G` | `false` | Also report passive 13G stakes. |
| `includeAmendments` | `false` | Also report /A amendments (stake changes, exits). |
| `onlyNewCampaigns` | `false` | Emit only campaign-starting filings (ideal for alerts). |
| `contactEmail` | — | Included in the User-Agent per SEC fair-access policy. Recommended. |

### Output

One dataset item per (filing, target company):

```json
{
  "activist_cik": 1510281,
  "activist_name": "Saba Capital Management, L.P.",
  "form": "SCHEDULE 13D",
  "filing_date": "2026-03-04",
  "acceptance_datetime": "2026-03-04T21:24:15.000Z",
  "accession": "0001062993-26-001289",
  "subject_cik": 748691,
  "subject_name": "KOREA FUND INC",
  "subject_ticker": "KF",
  "is_new_campaign": true,
  "filing_index_url": "https://www.sec.gov/Archives/edgar/data/1510281/000106299326001289/0001062993-26-001289-index.htm"
}
````

### Typical setup: weekly alert

1. Schedule the actor to run weekly (activists file at ~10 campaigns/year — daily is overkill; SEC acceptance after market close means next-day granularity is enough).
2. Set `onlyNewCampaigns: true`.
3. Connect an [Apify integration](https://docs.apify.com/platform/integrations) (email, Slack, webhook) on new dataset items.

The first run parses the activist's full filing history (~1–2 minutes for a prolific filer); subsequent runs reuse a persistent cache and finish in seconds.

### Data source, fair access, and costs

All data comes directly from **SEC EDGAR** (public domain): the submissions API and filing index pages. The actor identifies itself via User-Agent and throttles below SEC's 10 req/s guideline. No third-party data, no scraping of commercial sites.

### Disclaimer

This actor reports public regulatory filings and computed flags. It is **not investment advice**, and the historical statistics quoted above are research results, not a promise of future returns. Do your own research.

# Actor input Schema

## `activistCiks` (type: `array`):

SEC CIK numbers of the activist investors (filers) to monitor. Default: Saba Capital Management (1510281). Find any investor's CIK at https://www.sec.gov/cgi-bin/browse-edgar (company search).

## `lookbackDays` (type: `integer`):

How many days back to report filings for. The new-campaign flag is always computed against the activist's FULL filing history, regardless of this window.

## `includeSchedule13G` (type: `boolean`):

Also report 13G filings (passive ownership above 5%). Off by default: activist campaigns are announced via 13D.

## `includeAmendments` (type: `boolean`):

Also report amended filings (13D/A, 13G/A) — useful for tracking stake increases/exits in ongoing campaigns.

## `onlyNewCampaigns` (type: `boolean`):

Output only filings that start a brand-new campaign (first-ever 13D by this activist on this target). Ideal for alerting.

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

SEC's fair-access policy asks automated clients to identify themselves with contact info in the User-Agent header. Strongly recommended.

## Actor input object example

```json
{
  "activistCiks": [
    "1510281"
  ],
  "lookbackDays": 45,
  "includeSchedule13G": false,
  "includeAmendments": false,
  "onlyNewCampaigns": false,
  "contactEmail": ""
}
```

# Actor output Schema

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

All filings found in the lookback window, newest first.

## `newCampaigns` (type: `string`):

Only the filings that start a new campaign — the actionable alerts.

# 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 = {
    "activistCiks": [
        "1510281"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("szopers/sec-activist-13d-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 = { "activistCiks": ["1510281"] }

# Run the Actor and wait for it to finish
run = client.actor("szopers/sec-activist-13d-monitor").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 '{
  "activistCiks": [
    "1510281"
  ]
}' |
apify call szopers/sec-activist-13d-monitor --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "SEC Activist 13D/13G Monitor",
        "description": "Monitors SEC EDGAR for new 13D/13G filings by activist investors (e.g. Saba Capital) and flags brand-new campaigns — the first 13D ever filed on a given target company.",
        "version": "0.1",
        "x-build-id": "fPBoh7VDdyiZ3EfOI"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/szopers~sec-activist-13d-monitor/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-szopers-sec-activist-13d-monitor",
                "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/szopers~sec-activist-13d-monitor/runs": {
            "post": {
                "operationId": "runs-sync-szopers-sec-activist-13d-monitor",
                "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/szopers~sec-activist-13d-monitor/run-sync": {
            "post": {
                "operationId": "run-sync-szopers-sec-activist-13d-monitor",
                "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": {
                    "activistCiks": {
                        "title": "Activist CIK numbers",
                        "type": "array",
                        "description": "SEC CIK numbers of the activist investors (filers) to monitor. Default: Saba Capital Management (1510281). Find any investor's CIK at https://www.sec.gov/cgi-bin/browse-edgar (company search).",
                        "default": [
                            "1510281"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "lookbackDays": {
                        "title": "Lookback window (days)",
                        "minimum": 1,
                        "maximum": 3650,
                        "type": "integer",
                        "description": "How many days back to report filings for. The new-campaign flag is always computed against the activist's FULL filing history, regardless of this window.",
                        "default": 45
                    },
                    "includeSchedule13G": {
                        "title": "Include Schedule 13G (passive stakes)",
                        "type": "boolean",
                        "description": "Also report 13G filings (passive ownership above 5%). Off by default: activist campaigns are announced via 13D.",
                        "default": false
                    },
                    "includeAmendments": {
                        "title": "Include amendments (/A)",
                        "type": "boolean",
                        "description": "Also report amended filings (13D/A, 13G/A) — useful for tracking stake increases/exits in ongoing campaigns.",
                        "default": false
                    },
                    "onlyNewCampaigns": {
                        "title": "Only new campaigns",
                        "type": "boolean",
                        "description": "Output only filings that start a brand-new campaign (first-ever 13D by this activist on this target). Ideal for alerting.",
                        "default": false
                    },
                    "contactEmail": {
                        "title": "Your contact e-mail (for SEC)",
                        "type": "string",
                        "description": "SEC's fair-access policy asks automated clients to identify themselves with contact info in the User-Agent header. Strongly recommended.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
