GnistAI GnistAI
Log in

Insider Trading

Corporate insider buy/sell transactions — Form 4 filings parsed for officer, director, and 10%+ owner trades.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 3 tools tools 3 3 Finance

Data source: SEC EDGAR (Form 4)

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/insider-trading/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-insider-trading": {
      "url": "https://context.gnist.ai/mcp/insider-trading/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/insider-trading/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "get_insider_trades", "arguments": {"ticker_or_cik": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/insider-trading/

3 endpoints available:

Shell
curl "https://context.gnist.ai/rest/insider-trading/get_insider_trades?ticker_or_cik=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/insider-trading/get_insider_trades",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "ticker_or_cik": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc insider-trading

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (3)

get_insider_trades
Get recent insider buy/sell transactions for a public company.
ParameterTypeRequiredDescription
ticker_or_cikstringrequiredTicker symbol (e.g. "AAPL", "TSLA") or numeric CIK (e.g. "320193").
limitintegeroptionalMaximum Form 4 filings to parse (default 20, max 50). Each filing may contain multiple transactions. (default: 20)
get_insider_summary
Get aggregated insider trading activity for a company.
ParameterTypeRequiredDescription
ticker_or_cikstringrequiredTicker symbol (e.g. "AAPL") or numeric CIK (e.g. "320193").
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related