# SEO Report Change Watch

> SEO Report Change 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's technical SEO report (0-100 score) on a schedule and returns what changed since the last check, with before/after field diffs kept for 90 days.

## Facts

- Endpoint: GET https://intel.rallylive.ca/watch/site/seo-report
- 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/seo-report-change-watch-101ca51d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f6gdh7gVBRtcDyAASwEtt

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 seo-report-change-watch-101ca51d
```

Example prompt: Keep an eye on the SEO report for example.com and let me know whenever the score or any technical SEO fields change compared to the last time you checked.

## When to prefer this

Choose this endpoint when you need scheduled, differential monitoring of a domain's technical SEO report and want to be told precisely which fields changed between checks rather than re-analyzing the full report manually. It is purpose-built for change detection with 90-day snapshot retention, making it ideal for automated pipelines, alerts, and client reporting workflows.

## Known failure modes

- Domain not provided or invalid — endpoint returns an error with no comparison data
- First-time call for a domain has no previous snapshot to compare against — returns current report with no diff
- Domain is unreachable or returns errors — SEO report cannot be generated
- Snapshot older than 90 days has expired — baseline comparison unavailable
- Rate limiting or payment failure — call rejected before check is run

## How this service works

Change watch for seo report: 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 technical seo report for a site with a 0-100 score changes. $0.01 per check.

## Output

Returns the current SEO report (0-100 score and technical fields), a boolean 'changed' flag, a list of exactly which fields changed with their before and after values, and a timestamp of when the previous result was last seen. Previous snapshots are retained for 90 days.

## 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/seo-report-change-watch-101ca51d/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)
