insider_8k
Pack: insider-trading · Endpoint: https://gateway.pipeworx.io/insider-trading/mcp
SEC Form 8-K material event filings for a US-listed company, with the 8-K item codes decoded (earnings release, acquisition completed, officer departure, material agreement, delisting notice…). Answers what significant corporate events a company has disclosed and when.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ticker | string | yes | Stock ticker (“AAPL”), company name, or CIK |
days | number | no | Look back period in days (default: 180) |
limit | number | no | Max filings to return (default: 15, max 200) |
Example call
Arguments
{
"ticker": "AAPL"
}
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_8k","arguments":{"ticker":"AAPL"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('insider_8k', {
"ticker": "AAPL"
});
More examples
{
"ticker": "NVDA",
"days": 180,
"limit": 10
}
Response shape
Always returns: ticker, total_8k_filings, period, filings
| Field | Type | Description |
|---|---|---|
ticker | string | Stock ticker in uppercase |
total_8k_filings | number | Number of 8-K filings RETURNED in filings — always equals filings.length |
period | string | Look back period description |
filings | array | |
matched_8k_filings | number | Number of 8-K 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_8k_filings": {
"type": "number",
"description": "Number of 8-K 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"
},
"company": {
"type": "string",
"description": "Company name"
},
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "8-K item code (e.g., 2.02, 5.02)"
},
"description": {
"type": "string",
"description": "Human-readable description of the event type"
}
},
"required": [
"code",
"description"
]
}
},
"accession": {
"type": "string",
"description": "SEC accession number"
},
"filing_url": {
"type": "string",
"description": "URL to SEC filing document"
}
},
"required": [
"date",
"company",
"items",
"accession",
"filing_url"
]
}
},
"matched_8k_filings": {
"type": "number",
"description": "Number of 8-K 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_8k_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.