form_d_offering_detail

Pack: sec-form-d · Endpoint: https://gateway.pipeworx.io/sec-form-d/mcp

Retrieve and normalize one official Form D XML filing by SEC accession number. Returns offering amounts, first sale, investors, exemptions, securities, issuer identity, executives/related persons, commissions, and exact SEC provenance.

Parameters

NameTypeRequiredDescription
accession_numberstringyesSEC accession number, e.g. 0002036057-26-000002.

Example call

Arguments

{
  "accession_number": "0002036057-26-000002"
}

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_offering_detail","arguments":{"accession_number":"0002036057-26-000002"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('form_d_offering_detail', {
  "accession_number": "0002036057-26-000002"
});

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