# AgentToll Insider Cluster Brief

> AgentToll Insider Cluster Brief is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Analyzes SEC insider trading filings to detect coordinated buying/selling clusters and returns a verdict with actionable signals for a given stock or sector.

## Facts

- Endpoint: POST https://agenttoll.dev/paid/finance/insider-cluster-brief
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-insider-cluster-brief-307de771
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2v4pgRczKyDn1y027GZtJ

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 agenttoll-insider-cluster-brief-307de771 -d '<json body>'
```

Example prompt: Check the latest SEC insider filing clusters for NVDA and tell me whether multiple insiders are buying or selling together — give me a verdict on whether it's worth watching.

## When to prefer this

Choose this endpoint when you need a synthesized, verdict-driven summary of insider cluster activity from SEC filings rather than raw filing data. Ideal for quick due diligence, pre-trade research, or building watchlists around insider sentiment signals. Prefer this over raw SEC EDGAR queries when you want clustered analysis rather than individual filing lookup.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty clusters array
- No recent filings available for the requested company or period
- Payment failure via x402 protocol blocks the request
- Rate limiting if too many calls are made in quick succession
- Ambiguous company name without ticker may return incorrect data

## How this service works

SEC Form 4 insider-activity cluster brief with filing counts, source links, and watchlist verdict

## Output

Returns a JSON object with a product label ('Insider Cluster Brief'), a summary containing a verdict (e.g. 'watch', 'buy', 'sell', or 'neutral') and the number of filings checked, plus an array of detected insider clusters with details on the coordinated transactions found.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 80,
       "minimum": 5
      },
      "ticker": {
       "type": "string",
       "maxLength": 10
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "product": "Insider Cluster Brief",
  "summary": {
   "verdict": "watch",
   "filings_checked": 12
  },
  "clusters": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-insider-cluster-brief-307de771/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
