Politician Trades

liveFinanceGovernmentMarkets

Stock trades disclosed by members of the US Congress — who bought or sold what, and when they filed it.

3tools
0msauth
free tier50 calls/day

Tools

politician_recent_trades

Stock trades disclosed by members of Congress under the STOCK Act, back to 2012.

No parameters required.

Try it
politician_top_movers

Which tickers attracted the most congressional trading activity in the last N days, aggregated across the top 35 most-active filers. Returns each ticker with trade count, distinct member count, purcha

No parameters required.

Try it
politician_member_activity

Detail view for a single member of Congress (or executive-branch filer): full lifetime trade count, windowed activity, late-filing rate, avg days-to-file, estimated disclosed volume, and avg excess re

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/politician-trades/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/politician-trades/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"politician_recent_trades","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("politician_recent_trades", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("stock trades disclosed by members of the us congress — who bought or sold what, and when they filed it");