# Title and Meta Description Change Detector

> Title and Meta Description Change Detector is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Records a page's title and meta description on each call and reports changes compared to the previous call, with 90-day history retention.

## Facts

- Endpoint: GET https://intel.rallylive.ca/site/title-history
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/title-and-meta-description-change-detector-47c32ee9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7x_Jp3_gGwD0bPC_IpE-L

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 title-and-meta-description-change-detector-47c32ee9
```

Example prompt: Keep an eye on https://acme.com for me — let me know if the page title or meta description changes from what it was last time you checked, so I can catch any rebrand or SEO edits.

## When to prefer this

Choose this endpoint when you need lightweight, persistent monitoring of a specific page's title and meta description over time without running a full page scrape. It is ideal for catching rebrands, SEO edits, or site hijacks at minimal cost ($0.01/call) with 90-day history. Prefer it over general scraping endpoints when only title/description change detection is needed.

## Known failure modes

- URL is unreachable or returns a non-200 status — endpoint may return an error or empty diff
- Page has no title or meta description tags — returns empty strings with no change flagged
- First call for a URL has no previous state to compare — baseline recorded, no change reported
- Payment not accepted — x402 payment required error
- Rate limiting or network timeout reaching the target page

## How this service works

Title and description change detection: records a page's title and meta description on each call and tells you when either changes compared with your previous call (kept 90 days). Catch rebrands, hijacks and SEO edits. $0.01 per check.

## Output

Returns the current page title and meta description alongside the previously recorded values, a boolean indicating whether each changed, and the timestamp of the last recorded state. History is 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/title-and-meta-description-change-detector-47c32ee9/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)
