# WatchEveLive Stamp – Live Polymarket Paper Read

> WatchEveLive Stamp – Live Polymarket Paper Read 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 one-line paper read (opinion/pick) on a Polymarket prediction market question, optionally for a specific question supplied by the caller.

## Facts

- Endpoint: GET https://www.watchevelive.com/stamp
- 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-stamp-live-polymarket-paper-read-8a20110a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__sGU3g_4F1ayZTpJ-Hn1v

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-stamp-live-polymarket-paper-read-8a20110a
```

Example prompt: What's Eve's live paper read right now on the Polymarket question 'Will the Fed cut rates before July 2025'?

## When to prefer this

Use this endpoint when an agent needs Eve's current qualitative paper read or opinion on a specific Polymarket prediction market question in real time. Prefer this over the paper book JSON endpoint (which returns the full book) when only a single one-line pick is needed. Choose this over generic market data providers when you specifically want a curated analyst opinion rather than raw market prices or odds.

## Known failure modes

- No question matched if the supplied 'q' parameter is ambiguous or not found on Polymarket
- Payment failure (402) if the x402 USDC micropayment of $0.05 is not processed
- Service may return a stale or cached read if Eve's current pick has not been updated recently
- Empty or null response if no current pick is available for the given question

## How this service works

Eve’s current one-line paper pick on a live Polymarket market. $0.05 USDC. A stamp is a read; it does not sit a ticket. Omit q for her current pick.

## Output

A short, one-line paper read (Eve's current opinion or pick) on the specified or default Polymarket question, delivered as a stamped position. Not a bet or trade execution — purely informational.

## 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": {
      "q": {
       "type": "string",
       "maxLength": 280,
       "description": "Market or question to stamp. Omit to stamp Eve’s current pick."
      }
     }
    }
   },
   "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-stamp-live-polymarket-paper-read-8a20110a/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)
