# IP Country Change Watch

> IP Country 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 which country an IP address resolves to and alerts when that mapping changes, comparing against the last stored result from up to 90 days ago.

## Facts

- Endpoint: GET https://intel.rallylive.ca/watch/ip/geo
- 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-country-change-watch-f78ce061
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2uQPFoA1hnZf5OvFFVWO4

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-country-change-watch-f78ce061
```

Example prompt: Check if the country associated with IP 203.0.113.42 has changed since the last time you checked — tell me the current country, whether it changed, and what the before/after values were.

## When to prefer this

Choose this endpoint when you need to detect changes in an IP address's country mapping over time rather than just performing a one-off lookup. It is ideal for scheduled monitoring workflows, compliance checks, fraud detection pipelines, and any use case where knowing whether a country association has shifted is more valuable than the raw geolocation itself. Prefer this over a plain IP geolocation lookup when you need change detection with historical comparison baked in.

## Known failure modes

- IP address not provided or malformed — returns error
- IP address not previously checked — no baseline to compare against, returns current result with changed=false or null
- Previous result expired (older than 90 days) — no historical baseline available
- Rate limiting or payment failure via x402 protocol
- IP geolocation service unavailable — may return error or stale data

## How this service works

Change watch for ip country: 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 to country changes. $0.01 per check.

## Output

Returns the current IP-to-country lookup result, a boolean 'changed' flag indicating whether the country mapping differs from the previous call for the same IP, a breakdown of exactly which fields changed with their before and after values, and a timestamp of when the IP was last seen. Previous results are retained for up to 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-country-change-watch-f78ce061/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)
