# DNS AAAA Record Change Watch

> DNS AAAA Record 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 DNS AAAA (IPv6) records for a domain and alerts when they change, with before/after field-level diff and history kept 90 days.

## Facts

- Endpoint: GET https://intel.rallylive.ca/watch/dns/aaaa
- 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/dns-aaaa-record-change-watch-ff49aafb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CNYne9Z_0iTTjLg97n2Wj

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 dns-aaaa-record-change-watch-ff49aafb
```

Example prompt: Keep an eye on the AAAA DNS records for example.com and let me know if anything changes — show me exactly which fields changed and what they were before and after.

## When to prefer this

Choose this endpoint when you need to detect changes in DNS AAAA (IPv6) records over time rather than just a one-time lookup. It is ideal for scheduled monitoring workflows where you want field-level diffs and a 90-day history window without managing your own state. Prefer it over a plain DNS lookup endpoint when the goal is alerting or auditing changes rather than just retrieving current records.

## Known failure modes

- Domain not found or has no AAAA record — returns current answer as empty with no prior comparison
- First-time call for a domain — no previous result exists so changed is false and no diff is returned
- Domain input missing or malformed — request fails with an input validation error
- Network or DNS resolver timeout — temporary failure with no result returned
- Payment not provided or insufficient — x402 payment required error

## How this service works

Change watch for dns aaaa records: runs the check and compares it with the result from your previous call for the same domain (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 dns aaaa record lookup changes. $0.01 per check.

## Output

Returns the current AAAA record answer for the domain, a boolean indicating whether it changed since the last call, a field-level diff with before/after values for any changed fields, and the timestamp of when the record was last seen. Historical state is retained for 90 days per domain.

## 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/dns-aaaa-record-change-watch-ff49aafb/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)
