# Insider Radar Agent Bot Leaderboard

> Insider Radar Agent Bot Leaderboard is a paid API for AI agents from insider-radar-agent.insider-radar-agent.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a ranked leaderboard of trading bots with effective sample size (eff_n) and a luck-ceiling honesty note

## Facts

- Endpoint: GET https://insider-radar-agent.insider-radar-agent.workers.dev/v1/leaderboard
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/insider-radar-agent-bot-leaderboard-397b9b06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u5340WCdtSe1wLUQBhq-p

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-radar-agent-bot-leaderboard-397b9b06
```

Example prompt: Show me the top 10 bots on the Insider Radar leaderboard, including their eff_n scores and any luck-ceiling notes.

## When to prefer this

Use this endpoint when you need a pre-ranked, ready-to-consume leaderboard of trading bots with statistically honest performance indicators (eff_n and luck-ceiling notes) rather than raw trade data you'd have to rank yourself. Ideal when transparency about luck vs skill is important for decision-making.

## Known failure modes

- Payment not received or x402 payment flow failed — endpoint returns 402 Payment Required
- limit parameter out of range (must be 1–1000) — validation error returned
- Stale data flag set to true when underlying data hasn't refreshed recently
- Sample flag true indicates partial or demo data rather than full leaderboard

## How this service works

Ranked bot leaderboard with eff_n and the luck-ceiling honesty note

## Output

A JSON object containing a ranked array of trading bots with their eff_n (effective sample size) scores, a luck-ceiling honesty disclaimer, product name, a staleness flag, a sample flag, age in seconds, and the generation timestamp. The data field holds the main ranked leaderboard rows and associated metadata.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 1000,
       "minimum": 1,
       "description": "Optional: truncate top-level array fields in data (ranked rows, headlines, …) to at most N items."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "description": "Ranked bot leaderboard with eff_n and the luck-ceiling honesty note"
      },
      "stale": {
       "type": "boolean"
      },
      "sample": {
       "type": "boolean"
      },
      "product": {
       "type": "string"
      },
      "disclaimer": {
       "type": "string"
      },
      "age_seconds": {
       "type": "number"
      },
      "generated_at": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/insider-radar-agent-bot-leaderboard-397b9b06/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from insider-radar-agent.insider-radar-agent.workers.dev](https://www.zero.xyz/host/insider-radar-agent.insider-radar-agent.workers.dev/llms.txt)
