insider_top_sellers

Pack: sec-insider · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/insider_top_sellers for the schema, then POST the same URL with its arguments for the data.

Rank the biggest OPEN-MARKET insider sales across every US public company at once — “which insiders sold the most stock recently”. Returns insider name and role, issuer and ticker, shares, price and dollar value, newest first. Counts only transaction code S, a sale at market; shares withheld for tax (F) are excluded, since those are a payroll mechanism rather than a decision to sell. Sourced from SEC Forms 3/4/5.

Parameters

NameTypeRequiredDescription
sincestringnoEarliest transaction date, ISO (YYYY-MM-DD).
untilstringnoLatest transaction date, ISO (YYYY-MM-DD).
min_value_usdnumbernoIgnore sales below this dollar value.
limitnumbernoHow many to return (default 20, max 100).

Example call

Arguments

{
  "limit": 10
}

curl

curl -X POST https://gateway.pipeworx.io/sec-insider/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"insider_top_sellers","arguments":{"limit":10}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('insider_top_sellers', {
  "limit": 10
});

Connect

Add this to your MCP client config — every tool in the catalog, including this one — or use one-click install buttons:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://pipeworx.io/mcp"
    }
  }
}
Connect to just the sec-insider pack
{
  "mcpServers": {
    "sec-insider": {
      "url": "https://gateway.pipeworx.io/sec-insider/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 26, 2026