# Insider Alert — Bundled Insider Trading Workflow

> Insider Alert — Bundled Insider Trading Workflow is a paid API for AI agents from agent402.tools, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches Form 4 insider buy/sell trades, a live stock quote, and recent SEC filings for a given ticker in a single x402-gated call

## Facts

- Endpoint: POST https://agent402.tools/api/skill/insider-alert
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/insider-alert-bundled-insider-trading-workflow-89277f6b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qMmJWaZ9ONf2dLIgJTHgd

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 insider-alert-bundled-insider-trading-workflow-89277f6b -d '<json body>'
```

Example prompt: Can you pull up the insider alert for NVDA — I want to see what Form 4 trades insiders have been making, the live quote, and any recent SEC filings all at once?

## When to prefer this

Use this endpoint when you need a comprehensive insider-activity snapshot for a single stock and want to avoid three separate API calls — it bundles Form 4 trades, live quote, and SEC filings atomically under one x402 payment, making it ideal for stock research workflows, alerts, or due diligence pipelines.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty trades list
- Payment failure via x402 protocol blocks the call
- SEC EDGAR rate limits or downtime may cause partial or failed data retrieval
- Ticker with no recent Form 4 filings returns empty insider activity
- Live quote unavailable for non-US or delisted tickers

## How this service works

Bundled execution of the Insider alert workflow - Insider buying/selling activity for a stock: Form 4 trades, live quote, and recent SEC filings in one call. One x402 payment runs 3 underlying tools (edgar-insider-trades, stock-quote, edgar-filings); partial-success per step.

## Output

Returns a bundled response containing: insider buy/sell Form 4 trade records (who traded, how many shares, at what price), a live stock quote for the ticker, and recent SEC filing summaries — all in one response for the given stock symbol.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ticker": {
   "type": "string",
   "description": "Stock ticker symbol (e.g. AAPL, NVDA)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {
   "ticker": "AAPL"
  },
  "pack": "insider-alert",
  "steps": [
   {
    "ok": true,
    "slug": "edgar-insider-trades",
    "result": {}
   },
   {
    "ok": true,
    "slug": "stock-quote",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-filings",
    "result": {}
   }
  ],
  "summary": "3/3 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/insider-alert-bundled-insider-trading-workflow-89277f6b/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)
