# wordpress-detect-watch

> wordpress-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).

Monitors a domain for changes in WordPress detection and fingerprint results, returning current status, a changed flag, and before/after field diffs since the last check.

## Facts

- Endpoint: GET https://intel.rallylive.ca/watch/site/wordpress
- 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/wordpress-detect-watch-75b12328
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XY-fuQz_7UPGUo4NfhQXz

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 wordpress-detect-watch-75b12328
```

Example prompt: Keep an eye on example.com and let me know if its WordPress detection status or fingerprint changes — check it on a schedule and show me exactly which fields changed and what the before and after values were.

## When to prefer this

Choose this endpoint when you need to detect changes in WordPress presence or fingerprint on a domain over time, rather than just a one-shot detection. It is ideal for scheduled monitoring workflows, competitive intelligence, or site integrity alerts where you care specifically about what changed between checks. Prefer it over a single-shot WordPress detect when you need the before/after diff and change notification semantics built in.

## Known failure modes

- Domain not reachable or returns non-200 response — detection may fail or return incomplete fingerprint
- No previous result stored (first call or cache expired after 90 days) — 'changed' flag will be false or undefined with no diff available
- Domain redirects away from WordPress before detection completes — may produce false negatives
- Rate limiting or payment failure — call rejected before check runs
- Invalid or malformed domain input — endpoint returns an error with no detection result

## How this service works

Change watch for wordpress 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 wordpress detection and fingerprint changes. $0.01 per check.

## Output

Returns the current WordPress detection result for the domain, a boolean 'changed' flag indicating whether anything differs from the previous call (stored up to 90 days), a list of specific fields that 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/wordpress-detect-watch-75b12328/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)
