# WWW vs Apex Check Watch

> WWW vs Apex Check Watch is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Monitors changes in the www-vs-apex DNS/redirect check for a domain, returning current result, whether it changed, which fields changed with before/after values, and when last seen.

## Facts

- Endpoint: GET https://intel.rallylive.ca/watch/monitor/www-vs-apex
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/www-vs-apex-check-watch-139958aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jMWgRbp0J0No0WN9LDoOD

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 www-vs-apex-check-watch-139958aa
```

Example prompt: Keep an eye on whether the www vs apex redirect check for my domain has changed since the last time you checked — tell me what's different and what the current result is.

## When to prefer this

Choose this endpoint when you need to detect changes in www vs apex domain redirect/DNS behavior over time on a polling schedule, rather than just fetching the current state once. It is ideal for automated monitoring pipelines, post-deployment verification, and SEO audits where you need a diff of exactly what changed and when, without maintaining your own state storage.

## Known failure modes

- Domain not provided or malformed — returns validation error
- First-time call for a domain has no previous result to compare against — returns current result with changed=false or null baseline
- Domain unreachable or DNS resolution failure — check result may be an error state
- State older than 90 days has been purged — treated as a fresh baseline
- Payment failure or insufficient USDC balance — request rejected before check runs

## How this service works

Change watch for www apex check: runs the check and compares it with the result from your previous call for the same domain (kept 90 days), returning the current answer, changed true/false, exactly which fields changed with before/after values, and when it was last seen. Call it on a schedule to be told when www vs apex check changes. $0.01 per check.

## Output

Returns the current www-vs-apex check result for the domain, a boolean indicating whether it changed since the last call, a list of exactly which fields changed with before and after values, and a timestamp of when the result was last seen. State is retained for 90 days per domain.

## 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"
     ],
     "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/www-vs-apex-check-watch-139958aa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
