insider_trades
Pack: insider-trading · Endpoint: https://gateway.pipeworx.io/insider-trading/mcp
SEC Form 4 insider transaction filings for a US-listed company: filing date, the officer/director/10%-owner who filed, and a link to the filing on EDGAR. Answers who at a company has been buying or selling its stock recently. Ticker or company name is resolved to a CIK, so results are that issuer’s filings.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ticker | string | yes | Stock ticker (“AAPL”, “NVDA”), company name (“NVIDIA Corp”), or CIK |
days | number | no | Look back period in days (default: 365) |
limit | number | no | Max filings to return (default: 20, max 200) |
Example call
Arguments
{
"ticker": "NVDA",
"days": 30
}
curl
curl -X POST https://gateway.pipeworx.io/insider-trading/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"insider_trades","arguments":{"ticker":"NVDA","days":30}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('insider_trades', {
"ticker": "NVDA",
"days": 30
});
More examples
{
"ticker": "AAPL",
"days": 365,
"limit": 50
}
Response shape
Always returns: ticker, total_form4_filings, period, filings
| Field | Type | Description |
|---|---|---|
ticker | string | Stock ticker in uppercase |
total_form4_filings | number | Number of Form 4 filings RETURNED in filings — always equals filings.length |
period | string | Look back period description |
filings | array | |
matched_form4_filings | number | Number of Form 4 filings matching upstream for this company and window, which may exceed the number returned |
cik | string | SEC CIK the ticker resolved to (unpadded) |
company_name | string | Canonical SEC registrant name |
truncated | boolean | True when more filings matched upstream than were returned; raise limit to see them |
Full JSON Schema
{
"type": "object",
"properties": {
"ticker": {
"type": "string",
"description": "Stock ticker in uppercase"
},
"total_form4_filings": {
"type": "number",
"description": "Number of Form 4 filings RETURNED in `filings` — always equals filings.length"
},
"period": {
"type": "string",
"description": "Look back period description"
},
"filings": {
"type": "array",
"items": {
"type": "object",
"properties": {
"date": {
"type": "string",
"description": "Filing date"
},
"filer": {
"type": "string",
"description": "Company or insider name"
},
"form": {
"type": "string",
"description": "Form type (4)"
},
"accession": {
"type": "string",
"description": "SEC accession number"
},
"filing_url": {
"type": "string",
"description": "URL to SEC filing document"
}
},
"required": [
"date",
"filer",
"form",
"accession",
"filing_url"
]
}
},
"matched_form4_filings": {
"type": "number",
"description": "Number of Form 4 filings matching upstream for this company and window, which may exceed the number returned"
},
"cik": {
"type": "string",
"description": "SEC CIK the ticker resolved to (unpadded)"
},
"company_name": {
"type": "string",
"description": "Canonical SEC registrant name"
},
"truncated": {
"type": "boolean",
"description": "True when more filings matched upstream than were returned; raise `limit` to see them"
}
},
"required": [
"ticker",
"total_form4_filings",
"period",
"filings"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"insider-trading": {
"url": "https://gateway.pipeworx.io/insider-trading/mcp"
}
}
}
See Getting Started for client-specific install steps.