# Agent402 Insider Trading Report

> Agent402 Insider Trading Report is a paid API for AI agents from agent402.tools, paid per call via x402, $0.6/call, status unknown (last checked 2026-09-14).

Generates a synthesized AI report of SEC Form 4 insider trading activity for a US public company over a configurable lookback window

## Facts

- Endpoint: POST https://agent402.tools/v1/insider-report
- Price: $0.6/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-insider-trading-report-98d98706
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0KCoHmK5zqlsvum5zIdGd

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agent402-insider-trading-report-98d98706 -d '<json body>'
```

Example prompt: Can you pull an insider trading report for NVIDIA (ticker: NVDA) covering the last 60 days — I want to see which executives are buying or selling and how much?

## When to prefer this

Choose this endpoint when you need a ready-to-read, AI-synthesized insider trading report for a US public company rather than raw Form 4 data. It is ideal for equity research workflows, pre-investment due diligence, or monitoring executive sentiment without having to parse SEC EDGAR XML yourself. Prefer this over raw EDGAR queries when you want open-market vs. non-open-market classification, net flow calculations, and cited source links bundled into a single pay-per-call response.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- CIK not found in SEC EDGAR returns an empty or error response
- No Form 4 filings found in the specified window returns an empty transactions result
- Days parameter outside 7-365 range may be rejected or clamped
- Payment of 0.6 USDC required per call via x402; missing payment returns 402 error
- Anthropic synthesis model unavailable may cause report generation failure

## How this service works

Name a US ticker and get one cited insider-flow report: every Form 4 against the company in the window with the actual transactions parsed from the filings - open-market buys and sales (who, when, how much, at what price) separated from awards, option exercises and tax withholding - aggregated per insider and as a net flow, with a grounded signal read and a downloadable transactions appendix. SEC EDGAR data, not investment advice. USDC (x402/MPP) or card (Stripe). Not cached.

## Output

Returns a structured JSON object containing: a markdown-formatted narrative report synthesized by Claude, a metadata summary (total buy/sell USD, open-market counts, net flow, filings read, transactions, sources cited), a structured table of all Form 4 transactions (date, insider name, role, shares, price, value, post-transaction holdings, 10b5-1 flag, filing link), a list of cited SEC EDGAR source URLs, and the ticker/CIK/company name.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cik": {
   "type": "string",
   "description": "SEC CIK of the company (alternative to ticker)."
  },
  "days": {
   "type": "number",
   "description": "Lookback window in days, 7-365 (default 90)."
  },
  "ticker": {
   "type": "string",
   "description": "US stock ticker, e.g. AAPL (or pass cik)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0000000000",
  "meta": {
   "tier": "insider-report",
   "ticker": "EXMP",
   "buy_usd": 240000,
   "company": "Example Corp",
   "sell_usd": 1850000,
   "window_days": 90,
   "filings_read": 6,
   "transactions": 9,
   "sources_cited": 7,
   "synthesis_model": "anthropic/claude-opus-5",
   "open_market_buys": 1,
   "open_market_sells": 3,
   "net_open_market_usd": -1610000
  },
  "report": "# Insider Flow Report: Example Corp (EXMP)\n\n**2026-05-24 to 2026-08-22** · 6 Form 4 filings read · 1 open-market buy ($240,000) · 3 open-market sales ($1,850,000)\n\n## Snapshot\n...\n\n## Sources\n[1] Form 4 filed 2026-08-18 by Example Officer - SEC EDGAR - https://www.sec.gov/Archives/edgar/data/0000000000/000000000000000000/form4.xml",
  "tables": [
   {
    "name": "transactions",
    "rows": [
     [
      "2026-08-16",
      "2026-08-18",
      "Example Officer",
      "Chief Financial Officer",
      "Common Stock",
      "S",
      "open-market sale",
      "5000",
      "120.5",
      "602500",
      "41000",
      "noted",
      "https://www.sec.gov/Archives/edgar/data/0000000000/000000000000000000/form4.xml"
     ]
    ],
    "label": "Form 4 transactions",
    "columns": [
     "Date",
     "Filed",
     "Insider",
     "Role",
     "Security",
     "Code",
     "Kind",
     "Shares",
     "Price",
     "Value (USD)",
     "Owned after",
     "10b5-1",
     "Filing"
    ]
   }
  ],
  "ticker": "EXMP",
  "company": "Example Corp",
  "sources": [
   {
    "n": 1,
    "url": "https://www.sec.gov/Archives/edgar/data/0000000000/000000000000000000/form4.xml",
    "title": "Form 4 filed 2026-08-18 by Example Officer - SEC EDGAR"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-insider-trading-report-98d98706/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
