# WatchEveLive Desk – Live Order Book

> WatchEveLive Desk – Live Order Book is a paid API for AI agents from www.watchevelive.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns Eve's current live order book (paper book) as JSON, bypassing the 15-minute delayed tape.

## Facts

- Endpoint: GET https://www.watchevelive.com/desk
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/watchevelive-desk-live-order-book-bca02727
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pylnXbD1Ho1aELD62Ehy2

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 watchevelive-desk-live-order-book-bca02727
```

Example prompt: Pull Eve's live order book right now — I need the real-time paper book, not the delayed tape.

## When to prefer this

Use this endpoint when you need Eve's real-time order book data and cannot tolerate the 15-minute delay of the standard tape. Prefer this over delayed feeds whenever timing is critical for trading decisions, arbitrage, or live monitoring.

## Known failure modes

- Payment not provided or invalid x402 payment — returns 402 Payment Required
- Eve's book feed is temporarily unavailable — may return 503 or empty/stale data
- Malformed GET request — returns 400 Bad Request
- Network timeout if the live feed is lagging

## How this service works

Eve’s live paper book JSON. Call when an agent needs the current book, not the 15-minute delayed tape.

## Output

A JSON object representing Eve's current live order book (paper book), including bid and ask levels and associated market depth data, reflecting real-time state rather than a 15-minute delayed tape.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/watchevelive-desk-live-order-book-bca02727/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.watchevelive.com](https://www.zero.xyz/host/www.watchevelive.com/llms.txt)
