# Startup Fundraising Tracker — New SEC Form D Filings (`m_ctim/form-d-fundraising-tracker`) Actor

Track new SEC Form D filings — the mandatory disclosure private companies file when they raise money. Search by keyword or state, get the company, filing date, location, and a link to the filing. For VCs, journalists, and sales teams who want to know who just raised money before it's public news.

- **URL**: https://apify.com/m\_ctim/form-d-fundraising-tracker.md
- **Developed by:** [Timothy Kelvin](https://apify.com/m_ctim) (community)
- **Categories:** Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$20.00 / 1,000 filing searches

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#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

## Startup Fundraising Tracker — New SEC Form D Filings

Track new SEC Form D filings — the mandatory disclosure private companies
file within 15 days of raising money under a Reg D exemption, which
covers the large majority of startup fundraises. Search by keyword or
state, get the company name, filing date, location, and a link to the
filing.

Built for VCs, journalists, and sales teams who want to know who just
raised money — often before it shows up in any funding-news roundup.

### Input

```json
{
  "keyword": "",
  "states": ["CA", "NY"],
  "daysBack": 7,
  "maxResults": 50
}
```

| Field | Type | Description |
|---|---|---|
| `keyword` | string (optional) | Free-text search across filings (e.g. a company name or industry term). Leave blank to return all new Form D filings. |
| `states` | array of strings (optional) | Two-letter state codes to filter by business location. Leave empty for nationwide. |
| `daysBack` | number | How many days back from today to include, by filing date. Default `7`, max `90`. |
| `maxResults` | number | Max filings to return, most recently filed first. Default `50`, max `100`. |

### Output

One record per filing:

```json
{
  "companyName": "GTCR Fund XV/B LP",
  "cik": "0002141706",
  "filingDate": "2026-08-06",
  "state": "IL",
  "location": "Chicago, IL",
  "incorporatedIn": "DE",
  "accessionNumber": "0002141706-26-000001",
  "filingUrl": "https://www.sec.gov/Archives/edgar/data/2141706/000214170626000001/0002141706-26-000001-index.htm"
}
```

A search with no matches in the requested window returns no items but is
still billed once for the search.

### How it works

Direct calls to the official [SEC EDGAR full text search
API](https://www.sec.gov/edgar/search/) (`efts.sec.gov`), filtered to Form
D filings. No proxy, no key, no scraping.

**Note:** Form D discloses that a raise happened and basic company/filer
info — it doesn't always disclose the exact dollar amount raised (that
field is optional on the form itself). Use the `filingUrl` to pull the
full filing for deal-size detail when it's disclosed.

### Pricing note

Billed per **search**, not per filing returned — one charge whether the
search returns 1 filing or 100.

### Related products

- [Company Buying Signal Report](https://github.com/timmKal01/company-buying-signal-report) — once you know who raised money, check their hiring activity for a fuller buying signal
- [SEC 8-K Material Event Tracker](https://github.com/timmKal01/sec-8k-material-event-tracker) — the public-company equivalent: material events from public filings

# Actor input Schema

## `keyword` (type: `string`):

Free-text search across filings (e.g. a company name or industry term). Leave blank to return all new Form D filings.

## `states` (type: `array`):

Two-letter state codes to filter by business location (e.g. "CA", "NY"). Leave empty for nationwide.

## `daysBack` (type: `integer`):

How many days back from today to include, by filing date.

## `maxResults` (type: `integer`):

Maximum number of filings to return, most recently filed first.

## Actor input object example

```json
{
  "daysBack": 7,
  "maxResults": 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("m_ctim/form-d-fundraising-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("m_ctim/form-d-fundraising-tracker").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 '{}' |
apify call m_ctim/form-d-fundraising-tracker --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,m_ctim/form-d-fundraising-tracker"
        }
    }
}

```

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/7WKkyCUtS79rBF0d6/builds/dcQC1UnsCkKhNL6Qb/openapi.json
