# SYNTHORA Insider Radar

> SYNTHORA Insider Radar is a paid API for AI agents from insider-radar.hergertsynthora.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Scans recent large Polymarket fills and flags wallets exhibiting insider-like behavior — fresh accounts, outsized position sizing, or extreme odds entries ahead of market moves.

## Facts

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

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

Example prompt: Scan Polymarket for insider-style trades over the last 48 hours — minimum trade size $25,000 — and give me the top 10 most suspicious alerts with their severity scores and reasons.

## When to prefer this

Choose this endpoint when you need on-chain behavioral signals specifically from Polymarket and want pre-scored anomaly detection rather than raw fill data. It is ideal for agents monitoring prediction markets for smart-money flow, building trading strategies that follow information-advantage wallets, or performing market surveillance. Prefer this over generic blockchain explorers when you need pre-computed severity scores and multi-factor reasons (wallet freshness, sizing vs volume, odds timing) rather than writing your own heuristics.

## Known failure modes

- No alerts returned if no fills exceed the min_usd threshold in the lookback window
- Polymarket API downtime may cause empty or partial results
- Very short lookback windows (1-2h) may yield few or zero fills
- limit values outside 1-100 may be rejected or clamped
- Network or payment errors may return a non-200 response before any data is returned

## 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.

## Output

Returns a JSON object with a count of flagged alerts and an array of alert objects, each containing the transaction hash, wallet address, trade side, size in USD, entry price, market name and slug, outcome, UTC timestamp, severity score (0-100), list of suspicion reasons (e.g. fresh wallet, oversized vs market volume, extreme odds entry), wallet lifetime trade count, and 24h market volume and price change. Also includes methodology notes, total fills scanned, and the parameters used.

## 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/synthora-insider-radar-41523141/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from insider-radar.hergertsynthora.com](https://www.zero.xyz/host/insider-radar.hergertsynthora.com/llms.txt)
