Agent402 / tools / insider-report

Insider flow report (Form 4 transactions)

$9 per call · USDC via x402 · POST /v1/insider-report

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.

TRY IN PLAYGROUND →

Input

FieldTypeDescription
tickerstringUS stock ticker, e.g. AAPL (or pass cik).
cikstringSEC CIK of the company (alternative to ticker).
daysnumberLookback window in days, 7-365 (default 90).

Example output

{
  "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",
  "company": "Example Corp",
  "ticker": "EXMP",
  "cik": "0000000000",
  "sources": [
    {
      "n": 1,
      "title": "Form 4 filed 2026-08-18 by Example Officer - SEC EDGAR",
      "url": "https://www.sec.gov/Archives/edgar/data/0000000000/000000000000000000/form4.xml"
    }
  ],
  "tables": [
    {
      "name": "transactions",
      "label": "Form 4 transactions",
      "columns": [
        "Date",
        "Filed",
        "Insider",
        "Role",
        "Security",
        "Code",
        "Kind",
        "Shares",
        "Price",
        "Value (USD)",
        "Owned after",
        "10b5-1",
        "Filing"
      ],
      "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"
        ]
      ]
    }
  ],
  "meta": {
    "tier": "insider-report",
    "company": "Example Corp",
    "ticker": "EXMP",
    "window_days": 90,
    "filings_read": 6,
    "transactions": 9,
    "open_market_buys": 1,
    "buy_usd": 240000,
    "open_market_sells": 3,
    "sell_usd": 1850000,
    "net_open_market_usd": -1610000,
    "sources_cited": 7,
    "synthesis_model": "anthropic/claude-opus-5"
  }
}

Try it - see the 402 challenge (free)

curl -i -X POST https://agent402.tools/v1/insider-report \
  -H "Content-Type: application/json" \
  -d '{"ticker":"AAPL","days":90}'

The response is HTTP 402 Payment Required with exact payment requirements. Any x402 v2 client pays automatically and retries:

Paid call (JavaScript agent)

import { wrapFetchWithPayment } from "@x402/fetch";
import { x402Client } from "@x402/core/client";
import { registerExactEvmScheme } from "@x402/evm/exact/client";
import { privateKeyToAccount } from "viem/accounts";

const client = new x402Client();
registerExactEvmScheme(client, { signer: privateKeyToAccount(KEY) });
const payFetch = wrapFetchWithPayment(fetch, client);

const res = await payFetch("https://agent402.tools/v1/insider-report", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    "ticker": "AAPL",
    "days": 90
  }),
});
Wallet-only. This tool reaches the network/browser/storage, so it is paid in USDC via x402 (no proof-of-work tier).

Related tools

Chat completions - nano tier

$0.003 · POST /v1/nano/chat/completions

OpenAI-compatible chat completions, nano tier: gpt-4.1-nano, gpt-5-nano, gemini flash-lite, small llama/ministral/qwen, …

try in playground →

Chat completions - auto tier (eval-ranked routing)

$0.01 · POST /v1/auto/chat/completions

OpenAI-compatible chat completions with server-side model choice: omit "model" (or send "auto") and the gateway routes t…

try in playground →

Grounded chat (web search, OpenAI-compatible)

$0.03 · POST /v1/grounded/chat/completions

OpenAI-compatible chat completions GROUNDED in a live web search on every call: the gateway runs an Exa search (up to 5 …

try in playground →