# IP Private/Bogon Check Change Watch

> IP Private/Bogon Check 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 an IP address's private/bogon classification over time, detecting and reporting when its classification changes between calls.

## Facts

- Endpoint: GET https://intel.rallylive.ca/watch/ip/private-check
- 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-private-bogon-check-change-watch-f5afb2d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v96G6lNGTMXgzUOG-4Upy

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-private-bogon-check-change-watch-f5afb2d1
```

Example prompt: Keep an eye on the IP address 10.0.0.1 for me — run the private/bogon check on a schedule and let me know immediately if its classification ever changes, including exactly which fields flipped and what they were before and after.

## When to prefer this

Choose this endpoint when you need to track IP address classification changes over time on a recurring schedule, rather than just performing a one-off lookup. It is ideal for detecting when previously private or bogon IPs become routable, or vice versa, and for maintaining an audit trail of classification drift. Prefer it over a plain classification check when you need change detection semantics with before/after field diffs built in.

## Known failure modes

- No IP address provided — query parameter missing or malformed
- IP address format invalid — returns error indicating bad input
- No previous result stored — first call returns current result with changed=false and no diff
- Stored result expired (older than 90 days) — treated as new baseline
- Payment not completed — x402 payment required error
- Service unavailable — upstream classification data temporarily inaccessible

## How this service works

Change watch for ip private bogon check: 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 classification changes. $0.01 per check.

## Output

Returns the current private/bogon classification result for the IP, a boolean indicating whether classification has changed since the previous 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 state 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-private-bogon-check-change-watch-f5afb2d1/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)
