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

NameTypeRequiredDescription
sincestringnoStart filing date YYYY-MM-DD. Default 7 days ago.
untilstringnoEnd filing date YYYY-MM-DD. Default today.
industrystringnoOptional case-insensitive industry substring, e.g. “Biotechnology”.
minimum_soldnumbernoOptional minimum reported amount sold in USD.
include_amendmentsbooleannoInclude amended notices (default true).
limitnumbernoResults 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.

Regenerated from source · build July 27, 2026