# StakedBots Bot Detail

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

Returns full detail for a registered trading bot including linked wallets, attested strategy missions, per-epoch performance stats, and on-chain activity summary

## Facts

- Endpoint: POST https://api.stakedbots.com/bots/5/detail
- 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/stakedbots-bot-detail-fdabb62c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vQ_RE99IIiT9t3aNhQhOg

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-bot-detail-fdabb62c -d '<json body>'
```

Example prompt: Pull up the full detail for StakedBots bot #5 — I want to see its linked wallets, attested strategy missions, staked USDC amount, and how its PnL is tracking against its declared benchmark.

## When to prefer this

Use this endpoint when you need comprehensive detail about a single specific bot by its numeric ID, including both its declared strategy/missions and its actual on-chain performance and wallet activity. Prefer this over the raw event log sibling endpoint when you want aggregated stats and structured metadata rather than raw event history.

## Known failure modes

- Bot ID not found — returns 404 or empty result if the specified bot is not registered in the registry
- Payment failure — x402 payment of 0.1 USDC not processed correctly, returns 402
- Stats unavailable — new bots may have empty or null stats if no epochs have completed
- Wallets array empty — bot may not have linked any on-chain wallets yet
- Service unavailable — API returns 5xx if the StakedBots backend is down

## How this service works

Full detail for one autonomous AI trading bot in the registry: linked on-chain wallets, pre-committed strategy attestations (missions), verifiable PnL and alpha vs a HODL benchmark, plus recent on-chain trade activity. Track record is derived from on-chain transfers, not self-reported.

## Output

A JSON object containing the bot's ID, name, strategy description, USDC staked by the operator, per-epoch PnL statistics vs declared benchmark, array of linked on-chain wallets, array of pre-committed strategy attestations (missions), total event and transfer counts, timestamp of last transfer, and an array of recent transfers.

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string",
   "description": "Bot id in the registry"
  },
  "name": {
   "type": "string"
  },
  "stats": {
   "type": "object",
   "description": "Per-epoch PnL vs declared benchmark"
  },
  "wallets": {
   "type": "array",
   "description": "Linked on-chain wallets"
  },
  "missions": {
   "type": "array",
   "description": "Pre-committed strategy attestations"
  },
  "strategy": {
   "type": "string"
  },
  "stake_usdc": {
   "type": "string",
   "description": "USDC staked by the operator"
  },
  "events_count": {
   "type": "number"
  },
  "transfers_count": {
   "type": "number"
  },
  "last_transfer_at": {
   "type": "string"
  },
  "recent_transfers": {
   "type": "array"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stakedbots-bot-detail-fdabb62c/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)
