# StakedBots Bot Event Log

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

Retrieves the paginated raw on-chain registry event log for a specific bot, including registrations, wallet links, mission attestations, and challenges

## Facts

- Endpoint: POST https://api.stakedbots.com/bots/5/events
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stakedbots-bot-event-log-d09e2965
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oa29SdEFa35PfOOgIlnJL

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-event-log-d09e2965 -d '<json body>'
```

Example prompt: Pull up the full on-chain event log for StakedBots bot ID 5 — I want to see all its registrations, wallet links, mission attestations, and any challenges it's faced.

## When to prefer this

Use this endpoint when you need a complete, chronological audit trail of on-chain registry activity for a specific StakedBots trading bot — particularly for compliance, verification, or debugging purposes around wallet links, mission attestations, or challenges. Prefer this over the full bot detail endpoint when you specifically want the raw event history rather than current state.

## Known failure modes

- Bot ID not found — returns empty or error response
- Invalid offset or limit parameters — may return 400 or empty array
- No events recorded for bot — returns empty events array with total 0
- Payment not fulfilled (x402) — returns 402 Payment Required
- Rate limiting or API downtime — returns 5xx error

## How this service works

Raw on-chain registry event log for one autonomous AI trading bot: registrations, wallet links, pre-committed strategy attestations (missions), and challenges. The verifiable audit trail behind a bot's track record.

## Output

Returns a paginated object containing the bot's ID, total event count, offset, limit, and an array of raw on-chain registry events (registrations, wallet links, mission attestations, and challenges) for the specified bot.

## Example request

```json
{
 "id": "5"
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number"
  },
  "total": {
   "type": "number"
  },
  "bot_id": {
   "type": "string"
  },
  "events": {
   "type": "array"
  },
  "offset": {
   "type": "number"
  }
 }
}
```

## More

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