insider_top_sellers
Pack: sec-insider · Endpoint: https://gateway.pipeworx.io/sec-insider/mcp
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, mirrored by Pipeworx.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
since | string | no | Earliest transaction date, ISO (YYYY-MM-DD). |
until | string | no | Latest transaction date, ISO (YYYY-MM-DD). |
min_value_usd | number | no | Ignore sales below this dollar value. |
limit | number | no | How 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, or use one-click install buttons:
{
"mcpServers": {
"sec-insider": {
"url": "https://gateway.pipeworx.io/sec-insider/mcp"
}
}
}
See Getting Started for client-specific install steps.