# IP Address Info Change Watch

> IP Address Info 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 IP address intelligence data on a schedule and reports exactly which fields changed since the last check, with before/after values.

## Facts

- Endpoint: GET https://intel.rallylive.ca/watch/ip/info
- 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/ip-address-info-change-watch-57aafe1a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cy6tG7PQePcbZ_pRECQ9f

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 ip-address-info-change-watch-57aafe1a
```

Example prompt: Keep an eye on the IP 203.0.113.42 and let me know whenever its intelligence data changes — things like geolocation, ASN, or threat classification — compared to the last time you checked.

## When to prefer this

Choose this endpoint when you need to detect changes in IP address intelligence over time rather than just performing a one-time lookup. It is ideal for scheduled monitoring workflows where you want to be told exactly what changed (field-by-field diffs) without having to store and compare results yourself. Prefer it over a plain IP info lookup when your use case is surveillance, alerting, or drift detection.

## Known failure modes

- Missing or invalid IP address parameter returns an error
- IP not previously queried returns no diff data on first call (no baseline)
- Network timeout reaching the intel provider
- IP address in reserved/private range may return limited or no data
- Baseline data older than 90 days is purged, causing a fresh baseline to be established

## How this service works

Change watch for ip address info: runs the check and compares it with the result from your previous call for the same ip (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 ip address intelligence in one call changes. $0.01 per check.

## Output

Returns the current IP intelligence data snapshot, a boolean indicating whether anything changed since the last call, a list of exactly which fields changed with their before and after values, and a timestamp of when the IP was last seen. Historical comparison data 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/ip-address-info-change-watch-57aafe1a/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)
