# IP WHOIS RDAP Change Watch

> IP WHOIS RDAP 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).

Runs an IP WHOIS RDAP lookup and compares it against the previous result (cached 90 days) to detect and report any changes in registration data.

## Facts

- Endpoint: GET https://intel.rallylive.ca/watch/ip/rdap
- 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-whois-rdap-change-watch-2509cdd4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jNitLoPEoZEw_Gip3JvYM

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-whois-rdap-change-watch-2509cdd4
```

Example prompt: Keep an eye on the RDAP WHOIS record for 8.8.8.8 and let me know if anything has changed since the last time you checked.

## When to prefer this

Choose this endpoint when you need to detect changes in IP WHOIS/RDAP registration data over time rather than just a one-time lookup. Ideal for scheduled monitoring pipelines, security alerting, or tracking IP ownership and assignment changes. Prefer this over a plain RDAP lookup when you need diff tracking with before/after field values and historical comparison.

## Known failure modes

- IP address not provided or malformed — endpoint may return an error or empty result
- No prior result stored (first-time call) — returns current data but changed flag may be false or undefined
- IP not found in RDAP registries — may return empty or partial RDAP data
- Cached result expired beyond 90 days — previous baseline is lost, treated as first call
- Rate limiting or payment failure — call blocked if payment not processed correctly

## How this service works

Change watch for ip whois rdap: 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 whois via rdap changes. $0.01 per check.

## Output

Returns the current RDAP WHOIS data for the IP, a boolean 'changed' flag indicating whether anything has changed since the previous call, a list of exactly which fields changed with before and after values, and a timestamp of when the IP was last seen. Previous results 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/ip-whois-rdap-change-watch-2509cdd4/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)
