# Operator Zero — Live Revenue Monitor

> Operator Zero — Live Revenue Monitor is a paid API for AI agents from operator-zero-m4h-tester.lukepratermusic.workers.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Monitors a set of URLs for changes using evidence-backed public-source research, returning a diff-style report of what changed since the last baseline check

## Facts

- Endpoint: POST https://operator-zero-m4h-tester.lukepratermusic.workers.dev/api/v1/monitor
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/operator-zero-live-revenue-monitor-50e3fb19
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NczYRjGPPUOX1Gl82mgXQ

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 operator-zero-live-revenue-monitor-50e3fb19 -d '<json body>'
```

Example prompt: Keep an eye on these three competitor pricing pages — https://acme.com/pricing, https://rival.io/plans, and https://thirdco.com/pricing — using watch key 'pricing-watch-001', and flag anything that's changed since the last baseline.

## When to prefer this

Choose this endpoint when you need autonomous, paid web monitoring of public URLs with diff tracking over time — especially for competitive intelligence, revenue signals, or market research workflows where a persistent baseline per `watch_key` is needed. Prefer it over generic scraping tools when you want built-in change detection, structured diff output, and evidence-backed analysis rather than raw HTML.

## Known failure modes

- Missing required fields (`urls` or `watch_key`) returns a validation error
- Invalid or unreachable URLs may result in per-URL errors within the results array
- Payment failure (insufficient USDC balance or x402 protocol error) blocks the request
- If the watch_key has no prior baseline, this call creates one and `baseline_created` is true — no diff is available yet
- Rate limits or Cloudflare Worker timeouts on high URL counts may return partial results

## How this service works

Evidence-backed public-source research and competitive intelligence for autonomous agents. Calls are paid with $0.10 USDC on Base mainnet using x402 v2.

## Output

Returns a JSON object indicating whether any of the monitored URLs changed (boolean `changed`), how many URLs were checked and how many changed, a unique `monitor_id`, whether a fresh baseline was created on this call, per-URL detailed results, and privacy metadata. Each result entry contains evidence of what was found or changed on that URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "urls",
  "watch_key"
 ],
 "properties": {
  "urls": {
   "type": "array"
  },
  "focus": {
   "type": "array"
  },
  "label": {
   "type": "string"
  },
  "watch_key": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "status",
  "service",
  "commercial_version",
  "price_usd",
  "network",
  "monitor_id",
  "baseline_created",
  "changed",
  "changed_count",
  "checked_count",
  "results",
  "privacy"
 ],
 "properties": {
  "focus": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "label": {
   "type": [
    "string",
    "null"
   ]
  },
  "status": {
   "type": "string"
  },
  "changed": {
   "type": "boolean"
  },
  "network": {
   "type": "string"
  },
  "privacy": {
   "type": "object",
   "additionalProperties": true
  },
  "results": {
   "type": "array",
   "items": {
    "type": "object",
    "additionalProperties": true
   }
  },
  "service": {
   "type": "string"
  },
  "price_usd": {
   "type": "number"
  },
  "monitor_id": {
   "type": "string"
  },
  "changed_count": {
   "type": "integer"
  },
  "checked_count": {
   "type": "integer"
  },
  "baseline_created": {
   "type": "boolean"
  },
  "commercial_version": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/operator-zero-live-revenue-monitor-50e3fb19/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from operator-zero-m4h-tester.lukepratermusic.workers.dev](https://www.zero.xyz/host/operator-zero-m4h-tester.lukepratermusic.workers.dev/llms.txt)
