# DNS AAAA Record Lookup

> DNS AAAA Record Lookup is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Resolves a domain name to its IPv6 (AAAA) addresses, returning TTL values and DNSSEC validation status.

## Facts

- Endpoint: GET https://intel.rallylive.ca/dns/aaaa
- Price: $0.01/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-lookup-30a894eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6Jh5T_7KWWDWkSx7ixMmM

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-lookup-30a894eb
```

Example prompt: Can you look up the IPv6 AAAA DNS records for cloudflare.com and tell me if it resolves over IPv6 and whether DNSSEC is valid?

## When to prefer this

Use this endpoint when you specifically need IPv6 address resolution (AAAA records) rather than IPv4 (A records), when verifying IPv6 connectivity readiness of a domain, or when you need to confirm DNSSEC signing status for security audits. Prefer this over generic DNS tools when you need structured, machine-readable output with TTL and DNSSEC fields in a single call.

## Known failure modes

- Domain has no AAAA records (IPv4-only domains return empty result)
- Invalid or malformed domain name returns an error
- Domain does not exist (NXDOMAIN) resulting in lookup failure
- DNSSEC validation failure if records are tampered or misconfigured
- Network timeout if upstream DNS resolvers are unreachable

## How this service works

DNS AAAA record lookup: resolve a domain name to its IPv6 addresses with TTL and DNSSEC validation flag. Tells you whether a site is reachable over IPv6. $0.01 per lookup.

## Output

Returns the IPv6 addresses (AAAA records) associated with the queried domain, the TTL (time-to-live) value for caching, and a DNSSEC validation flag indicating whether the records are cryptographically signed and verified.

## 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-lookup-30a894eb/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)
