# Hergert Synthora Insider Radar

> Hergert Synthora Insider Radar is a paid API for AI agents from api.hergertsynthora.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Scans prediction market trade fills for suspicious large-wallet activity and surfaces alerts ranked by severity, flagging potential insider or informed trading patterns.

## Facts

- Endpoint: POST https://api.hergertsynthora.com/v1/insider-radar
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hergert-synthora-insider-radar-7e882bb6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wI4p8JRm7H1rtWM7FgqUO

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 hergert-synthora-insider-radar-7e882bb6 -d '<json body>'
```

Example prompt: Scan prediction market fills from the last 48 hours and show me up to 50 insider-radar alerts for trades over $25,000 — flag anything that looks like informed or suspicious wallet activity.

## When to prefer this

Choose this endpoint when you need to surveil prediction market order flow for anomalous or potentially informed trading, especially from fresh or low-history wallets making large moves. It is more specialized than generic on-chain analytics tools because it combines wallet history, trade size, and market momentum into a single severity-ranked alert feed purpose-built for prediction market insider detection.

## Known failure modes

- Invalid limit value outside 1-100 returns a validation error
- lookback_hours exceeding 168 may be rejected or clamped
- No alerts returned if no trades meet min_usd threshold in the lookback window
- Payment failure (402) if USDC balance is insufficient for the $0.03 per-call fee
- Network or infrastructure timeout if the on-chain data source is slow

## How this service works

Insider-style trade detection on Polymarket: scans the latest large fills (min_usd, default 10000 USD) over lookback_hours (default 24) and flags wallets that are fresh (few lifetime trades), sized big vs the market 24h volume, or entered at extreme odds right before the market moved. Each alert carries wallet, market, size, tx hash, a 0-100 severity score and explicit reasons; approximations are declared in the methodology field. For prediction agents tracking informed money. No charge on service failure. Ed25519-signed. $0.03 USDC per call via x402 on Base. Free trial: 3 calls per wallet with header X-WALLET.

## Output

Returns a JSON object with a list of trade alerts, each containing the transaction hash, buy/sell side, trade size in USD, price, market identifier, wallet address, predicted outcome, severity score (0-100), human-readable reasons for flagging, market 24-hour price change, wallet historical trade count, and market 24-hour volume. Also includes aggregate metadata: total fills scanned, lookback window, minimum USD threshold, and a methodology description.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "Max alerts (1-100, default 25)"
  },
  "min_usd": {
   "type": "number",
   "description": "Minimum trade size USD (default 10000)"
  },
  "lookback_hours": {
   "type": "number",
   "description": "Hours to look back (1-168, default 24)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "niche": "insider_radar",
  "result": {
   "count": 12,
   "alerts": [
    {
     "tx": "0x...",
     "side": "BUY",
     "size": 20000,
     "price": 0.12,
     "market": "...",
     "wallet": "0x...",
     "outcome": "Yes",
     "reasons": [
      "fresh wallet: only 2 trade(s) on record"
     ],
     "severity": 75,
     "usd_value": 2400,
     "market_slug": "...",
     "timestamp_utc": "...",
     "market_24h_change": 0.18,
     "wallet_trade_count": 2,
     "market_volume_24h_usd": 80000
    }
   ],
   "min_usd": 10000,
   "methodology": "...",
   "fills_scanned": 180,
   "lookback_hours": 24
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hergert-synthora-insider-radar-7e882bb6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.hergertsynthora.com](https://www.zero.xyz/host/api.hergertsynthora.com/llms.txt)
