# SEC Form D Filing Scraper (`comfy_glove/sec-form-d-scraper`) Actor

Scrapes recent SEC Form D filings from EDGAR and scores each lead by raise size, recency, round closure, and industry fit.

- **URL**: https://apify.com/comfy\_glove/sec-form-d-scraper.md
- **Developed by:** [Zsombor Szekeres](https://apify.com/comfy_glove) (community)
- **Categories:** Automation, Lead generation, Agents
- **Stats:** 2 total users, 1 monthly users, 60.0% runs succeeded, NaN 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 Form D Filing Scraper

Scrapes recent Form D filings from SEC EDGAR and scores each company as a hiring-signal lead.

### What is Form D?

Form D is filed with the SEC when a company raises money through a private placement (Reg D exempt offering). It is public, free, and filed within 15 days of the first investor check. A fresh Form D = a company that just got funded and is about to hire.

### Output Fields

| Field | Description |
|---|---|
| quality_score | 0–100 composite lead score |
| quality_label | hot / warm / qualified / low |
| company_name | Legal name of the issuer |
| entity_type | Corporation, LLC, Limited Partnership, etc. |
| city / state | Business address |
| jurisdiction_of_inc | State of incorporation |
| phone | Issuer phone number |
| industry_group | Biotechnology, Health Care, Other Technology, etc. |
| date_filed | Date Form D was filed with the SEC |
| date_of_first_sale | Date first investor money was accepted |
| days_since_filed | How many days ago it was filed |
| total_offering_amount | Total raise target |
| total_amount_sold | Amount actually raised so far |
| total_remaining | Amount still left to raise |
| round_closed_pct | % of offering sold (e.g. "95.0%") |
| num_investors | Number of investors already in |
| has_non_accredited_investors | true / false |
| security_type | Equity / Debt / Mixed |
| exec_name | First listed executive officer |
| exec_role | That executive's role |
| signer_name | Name of the person who signed the filing |
| signer_title | Their title (often CEO/CFO) |
| edgar_url | Direct link to the XML filing on EDGAR |

### Quality Score (0–100)

| Component | Max | Logic |
|---|---|---|
| Round closed | 30 | ≥95% sold = 30, ≥75% = 20, ≥50% = 10 |
| Raise size | 25 | $10M+ = 25, $5M+ = 20, $2M+ = 14, $500K+ = 7 |
| Recency | 20 | ≤7 days = 20, ≤14 = 15, ≤30 = 10, ≤60 = 5 |
| Industry fit | 15 | Biotech = 15, Health Care = 13, Technology = 11 |
| Investor profile | 10 | Accredited-only + >5 investors = 10 |

**Labels:** 80–100 = hot | 60–79 = warm | 40–59 = qualified | <40 = low

### Input Options

| Input | Default | Description |
|---|---|---|
| startDate | 30 days ago | YYYY-MM-DD |
| endDate | today | YYYY-MM-DD |
| industries | Biotechnology, Health Care, Other Technology, Technology | Filter by industry group |
| minAmountSold | 2,000,000 | Minimum $ raised so far |
| maxAmountSold | 0 (no ceiling) | Maximum $ raised so far |
| newFilingsOnly | true | Exclude D/A amendments |
| maxLeads | 200 | Max results (up to 2000) |

### Data Source

SEC EDGAR public API — no API key required.
Rate limit: EDGAR asks for a User-Agent email header, which is included automatically.

# Actor input Schema

## `startDate` (type: `string`):

Earliest filing date to include (YYYY-MM-DD). Defaults to 30 days ago.
## `endDate` (type: `string`):

Latest filing date to include (YYYY-MM-DD). Defaults to today.
## `industries` (type: `array`):

Only include filings from these industry groups. Leave empty to include all. Valid values: Biotechnology, Health Care, Other Technology, Technology, Pooled Investment Fund, Banking & Financial Services, Real Estate, Energy, Agriculture, Construction, Manufacturing, Mining, Retailing, Restaurants, Travel, Transportation & Warehousing, Communications, Insurance, Other
## `minAmountSold` (type: `integer`):

Minimum total amount already raised. 0 = no minimum.
## `maxAmountSold` (type: `integer`):

Maximum total amount already raised. 0 = no ceiling.
## `newFilingsOnly` (type: `boolean`):

If true, excludes D/A amendment filings. Recommended: true.
## `maxLeads` (type: `integer`):

Maximum number of leads to return.
## `compareToPreviousRun` (type: `boolean`):

If true, marks leads seen in your last run as processed=true. Filter on processed=false to see only new companies.

## Actor input object example

```json
{
  "startDate": "",
  "endDate": "",
  "industries": [
    "Biotechnology",
    "Health Care",
    "Other Technology",
    "Technology"
  ],
  "minAmountSold": 2000000,
  "maxAmountSold": 0,
  "newFilingsOnly": true,
  "maxLeads": 200,
  "compareToPreviousRun": false
}
````

# Actor output Schema

## `quality_score` (type: `string`):

Composite lead quality score. Higher = better signal.

## `quality_label` (type: `string`):

hot / warm / qualified / low

## `company_name` (type: `string`):

Legal name of the issuing company.

## `entity_type` (type: `string`):

Corporation, LLC, Limited Partnership, etc.

## `city` (type: `string`):

City of business address.

## `state` (type: `string`):

State of business address.

## `jurisdiction_of_inc` (type: `string`):

State or country where incorporated.

## `phone` (type: `string`):

Issuer phone number.

## `industry_group` (type: `string`):

Industry group from Form D (e.g. Biotechnology, Other Technology).

## `date_filed` (type: `string`):

Date the Form D was filed with the SEC.

## `date_of_first_sale` (type: `string`):

Date the company first accepted investor money.

## `days_since_filed` (type: `string`):

Number of days since the filing date.

## `total_offering_amount` (type: `string`):

Total size of the raise they are targeting.

## `total_amount_sold` (type: `string`):

Total amount actually raised so far.

## `total_remaining` (type: `string`):

Amount still left to raise.

## `round_closed_pct` (type: `string`):

Percentage of the offering that has been sold.

## `num_investors` (type: `string`):

Total number of investors already in the round.

## `has_non_accredited_investors` (type: `string`):

true / false — whether any non-accredited investors participated.

## `security_type` (type: `string`):

Equity, Debt, or Mixed.

## `exec_name` (type: `string`):

Name of first listed executive officer.

## `exec_role` (type: `string`):

Role of first listed executive officer.

## `signer_name` (type: `string`):

Name of the person who signed the filing.

## `signer_title` (type: `string`):

Title of the person who signed the filing.

## `edgar_url` (type: `string`):

Direct link to the filing on SEC EDGAR.

## `processed` (type: `string`):

false = new lead not seen in previous run. true = already seen. Filter on false to action only new companies.

# 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("comfy_glove/sec-form-d-scraper").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("comfy_glove/sec-form-d-scraper").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 comfy_glove/sec-form-d-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "SEC Form D Filing Scraper",
        "description": "Scrapes recent SEC Form D filings from EDGAR and scores each lead by raise size, recency, round closure, and industry fit.",
        "version": "1.0",
        "x-build-id": "96rXfkc2OfMSgWaHg"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/comfy_glove~sec-form-d-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-comfy_glove-sec-form-d-scraper",
                "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/comfy_glove~sec-form-d-scraper/runs": {
            "post": {
                "operationId": "runs-sync-comfy_glove-sec-form-d-scraper",
                "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/comfy_glove~sec-form-d-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-comfy_glove-sec-form-d-scraper",
                "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",
                "required": [
                    "maxLeads"
                ],
                "properties": {
                    "startDate": {
                        "title": "Start Date",
                        "type": "string",
                        "description": "Earliest filing date to include (YYYY-MM-DD). Defaults to 30 days ago.",
                        "default": ""
                    },
                    "endDate": {
                        "title": "End Date",
                        "type": "string",
                        "description": "Latest filing date to include (YYYY-MM-DD). Defaults to today.",
                        "default": ""
                    },
                    "industries": {
                        "title": "Industries",
                        "type": "array",
                        "description": "Only include filings from these industry groups. Leave empty to include all. Valid values: Biotechnology, Health Care, Other Technology, Technology, Pooled Investment Fund, Banking & Financial Services, Real Estate, Energy, Agriculture, Construction, Manufacturing, Mining, Retailing, Restaurants, Travel, Transportation & Warehousing, Communications, Insurance, Other",
                        "default": [
                            "Biotechnology",
                            "Health Care",
                            "Other Technology",
                            "Technology"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "minAmountSold": {
                        "title": "Minimum Amount Sold ($)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum total amount already raised. 0 = no minimum.",
                        "default": 2000000
                    },
                    "maxAmountSold": {
                        "title": "Maximum Amount Sold ($)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum total amount already raised. 0 = no ceiling.",
                        "default": 0
                    },
                    "newFilingsOnly": {
                        "title": "New Filings Only (exclude amendments)",
                        "type": "boolean",
                        "description": "If true, excludes D/A amendment filings. Recommended: true.",
                        "default": true
                    },
                    "maxLeads": {
                        "title": "Max Leads",
                        "minimum": 1,
                        "maximum": 2000,
                        "type": "integer",
                        "description": "Maximum number of leads to return.",
                        "default": 200
                    },
                    "compareToPreviousRun": {
                        "title": "Compare to Previous Run",
                        "type": "boolean",
                        "description": "If true, marks leads seen in your last run as processed=true. Filter on processed=false to see only new companies.",
                        "default": false
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
