form_d_recent_raises
Pack: sec-form-d · Endpoint: https://gateway.pipeworx.io/sec-form-d/mcp
Recent SEC Form D exempt-offering notices, newest first, hydrated from official filing XML with offering amount, amount sold, investors, security types, industry, issuer and related persons. A Form D is a self-reported offering notice—not proof that a financing round closed. Amendments are labeled and must not be double-counted.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
since | string | no | Start filing date YYYY-MM-DD. Default 7 days ago. |
until | string | no | End filing date YYYY-MM-DD. Default today. |
industry | string | no | Optional case-insensitive industry substring, e.g. “Biotechnology”. |
minimum_sold | number | no | Optional minimum reported amount sold in USD. |
include_amendments | boolean | no | Include amended notices (default true). |
limit | number | no | Results to hydrate and return (1-10, default 8). |
Example call
Arguments
{
"since": "2026-07-01",
"minimum_sold": 1000000,
"limit": 8
}
curl
curl -X POST https://gateway.pipeworx.io/sec-form-d/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"form_d_recent_raises","arguments":{"since":"2026-07-01","minimum_sold":1000000,"limit":8}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('form_d_recent_raises', {
"since": "2026-07-01",
"minimum_sold": 1000000,
"limit": 8
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"sec-form-d": {
"url": "https://gateway.pipeworx.io/sec-form-d/mcp"
}
}
}
See Getting Started for client-specific install steps.