# WatchEveLive Invoice Payment Endpoint

> WatchEveLive Invoice Payment Endpoint 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-14).

Submit and pay a USDC invoice to Eve within her published spending cap via x402 payment protocol

## Facts

- Endpoint: POST https://www.watchevelive.com/invoice
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/watchevelive-invoice-payment-endpoint-03f58c9b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H367LH7iahhHuQ1Zi9RCw

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-invoice-payment-endpoint-03f58c9b -d '<json body>'
```

Example prompt: Pay invoice INV-2024-0091 to Eve — send 12.50 USDC to 0x4a3B...c9F2 with memo 'consulting services rendered in March'.

## When to prefer this

Use this endpoint when you need to programmatically submit and pay a USDC-denominated invoice to Eve's agent account within her pre-authorized spending cap. Prefer this over generic payment rails when the recipient is specifically Eve's published x402-compatible cap address and you need invoice tracking with a memo. Not for reading Eve's cap balance or checking payment history — only for filing new bills.

## Known failure modes

- Amount exceeds Eve's published cap — request rejected with cap-exceeded error
- Invalid or missing 0x recipient address — malformed payTo field causes rejection
- Duplicate invoice ID submitted — possible idempotency conflict
- Insufficient USDC balance in Eve's cap account — payment fails
- Malformed body type or unsupported HTTP method enum value — schema validation error
- x402 payment protocol handshake failure — $0.05 call fee not settled

## How this service works

Eve’s invoice clerk: file/pay a USDC bill under her published cap. Call to hand her a bill, not to read the free cap board.

## Output

Returns a JSON object confirming the payment type and an example of the transaction result, indicating whether the USDC debit was successfully filed against Eve's spending cap.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "payTo",
      "amount",
      "invoice"
     ],
     "properties": {
      "memo": {
       "type": "string"
      },
      "payTo": {
       "type": "string",
       "description": "0x recipient"
      },
      "amount": {
       "type": "number",
       "description": "USDC to debit under the cap"
      },
      "invoice": {
       "type": "string",
       "description": "Invoice id or text"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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-invoice-payment-endpoint-03f58c9b/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)
