# status-page-detect-watch

> status-page-detect-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).

Runs a status page detection check for a domain and returns whether the result has changed since the previous call, with detailed field-level diffs.

## Facts

- Endpoint: GET https://intel.rallylive.ca/watch/monitor/status-page
- 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/status-page-detect-watch-cac2164c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OaHp7T9fR19WmnGVZCEj0

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 status-page-detect-watch-cac2164c
```

Example prompt: Check if the status page detection result for stripe.com has changed since the last time you checked — I want to know if it's different and exactly what changed.

## When to prefer this

Choose this endpoint when you need to detect changes in status page presence for a domain over time, rather than just performing a one-off lookup. It is specifically designed for scheduled polling workflows where you want to be alerted to differences between successive checks, complete with field-level diffs and timestamps — without building your own diffing or storage logic.

## Known failure modes

- No previous result stored (first call returns current result with changed=false or null diff)
- Domain not found or unreachable returns an error or empty detection result
- Stored comparison expires after 90 days, resetting the baseline
- Invalid or malformed domain input causes a request error
- Transient network failures may return a service error

## How this service works

Change watch for status page detect: 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 status page finder changes. $0.01 per check.

## Output

Returns the current status page detection result for the domain, a boolean 'changed' flag indicating whether the result differs from the previous call (stored for 90 days), a detailed diff listing exactly which fields changed with their before and after values, and a timestamp of when the result was last seen.

## 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/status-page-detect-watch-cac2164c/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)
