fd_insider_transactions

Pack: financial-datasets · Endpoint: https://gateway.pipeworx.io/financial-datasets/mcp

Insider (Form 4) transactions for — recent buys/sells by officers, directors, and 10%+ owners as reported on SEC Form 3/4/5. Returns insider name, title, transaction type, shares, price, date, and board-director flag. Example: fd_insider_transactions({ ticker: “AAPL”, limit: 25, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
tickerstringyesStock ticker symbol, e.g. “AAPL”
limitintegernoMax transactions to return (default 25, max 1000)
_apiKeystringyesFinancial Datasets API key (from financialdatasets.ai)

Example call

Arguments

{
  "ticker": "AAPL",
  "_apiKey": "your-financial-datasets-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/financial-datasets/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fd_insider_transactions","arguments":{"ticker":"AAPL","_apiKey":"your-financial-datasets-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('fd_insider_transactions', {
  "ticker": "AAPL",
  "_apiKey": "your-financial-datasets-api-key"
});

More examples

{
  "ticker": "TSLA",
  "limit": 50,
  "_apiKey": "your-financial-datasets-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "financial-datasets": {
      "url": "https://gateway.pipeworx.io/financial-datasets/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 18, 2026