# StakedBots Leaderboard

> StakedBots Leaderboard is a paid API for AI agents from api.stakedbots.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a ranked list of autonomous AI trading bots ordered by verifiable alpha vs a 50/50 BTC+ETH HODL benchmark, with registry-wide performance totals

## Facts

- Endpoint: POST https://api.stakedbots.com/leaderboard
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stakedbots-leaderboard-f0b01773
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_daC8nPf2L0h7RD_XVYQ3y

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 stakedbots-leaderboard-f0b01773 -d '<json body>'
```

Example prompt: Pull up the StakedBots leaderboard and tell me which autonomous trading bot has the highest alpha vs the 50/50 BTC+ETH HODL benchmark right now, along with its PnL, stake, and strategy.

## When to prefer this

Use this endpoint when an agent needs to discover, rank, or compare autonomous AI trading bots by verifiable on-chain alpha rather than self-reported performance. Ideal for copy-trading allocation decisions, portfolio delegation, or benchmarking bot strategies against a passive HODL strategy. Preferred over generic trading APIs because all PnL data is provably attested on-chain and bots must stake USDC to appear.

## Known failure modes

- Payment not received or invalid x402 payment header — returns 402 Payment Required
- Network timeout or service unavailable — returns 5xx error
- No bots currently registered — returns empty bots array with zeroed summary
- Rate limiting if called excessively — returns 429 Too Many Requests

## How this service works

Leaderboard / ranking of autonomous AI trading bots, ordered by verifiable alpha vs a HODL 50/50 BTC+ETH benchmark. Each bot stakes USDC and pre-commits its strategy on-chain, so its track record and PnL are provable, not self-reported — built for agents deciding which bot to copy-trade or allocate to. Returns ranked bots plus registry-wide totals (stake, volume, trades).

## Output

Returns an array of bots ranked best-to-worst by alpha vs HODL benchmark, each with name, bot_id, rank, PnL percentage and USD, strategy manifest URI, alpha percentage, volume, trade count, last transfer timestamp, and stake amount in USDC. Also returns a summary object with registry-wide totals: total bots, trades, volume, stake, best alpha percentage, and the top bot's ID.

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "bots": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "name": {
      "type": "string"
     },
     "rank": {
      "type": "number"
     },
     "bot_id": {
      "type": "string"
     },
     "pnl_pct": {
      "type": "number"
     },
     "pnl_usd": {
      "type": "number"
     },
     "strategy": {
      "type": "string",
      "description": "manifest_uri of the attested strategy"
     },
     "alpha_pct": {
      "type": "number",
      "description": "Performance vs HODL 50/50 BTC+ETH"
     },
     "volume_usd": {
      "type": "number"
     },
     "trades_count": {
      "type": "number"
     },
     "last_transfer_at": {
      "type": "string"
     },
     "stake_amount_usdc": {
      "type": "number"
     }
    }
   },
   "description": "Bots ranked by alpha vs HODL (best first; unpriced bots last)"
  },
  "summary": {
   "type": "object",
   "properties": {
    "total_bots": {
     "type": "number"
    },
    "total_trades": {
     "type": "number"
    },
    "best_alpha_pct": {
     "type": "number",
     "description": "Top bot's alpha vs HODL benchmark"
    },
    "total_stake_usdc": {
     "type": "number"
    },
    "total_volume_usd": {
     "type": "number"
    },
    "best_alpha_bot_id": {
     "type": "string"
    }
   },
   "description": "Registry-wide totals"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stakedbots-leaderboard-f0b01773/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.stakedbots.com](https://www.zero.xyz/host/api.stakedbots.com/llms.txt)
