# DNS AAAA Records Bulk Lookup

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

Bulk-resolves IPv6 AAAA DNS records for up to 20 domains in one concurrent call, returning ordered results with per-item error fields and a failure count.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/dns/aaaa
- Price: $0.1/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-records-bulk-lookup-98f06344
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_o6HfPovYUfsIEe3P5Czse

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-records-bulk-lookup-98f06344
```

Example prompt: Can you look up the IPv6 AAAA DNS records for all of these domains at once: example.com, cloudflare.com, github.com, and fastly.com?

## When to prefer this

Use this endpoint when you already have a list of domains (up to 20) and need their IPv6 AAAA records in a single efficient call rather than making 20 sequential single-domain lookups. Ideal for batch enrichment pipelines, IPv6 readiness audits, infrastructure scanning workflows, or any agent task that collects a set of hostnames and needs to resolve them concurrently. Prefer this over the single /dns/aaaa endpoint whenever you have more than one domain to resolve.

## Known failure modes

- Domain does not exist or has no AAAA record — per-item error field populated, IPv6 list empty
- More than 20 domains submitted — request rejected or truncated
- Network timeout during concurrent resolution — affected items return error
- Malformed domain name in input — per-item error returned for that entry
- Payment not processed — 402 response, no results returned

## How this service works

Bulk dns aaaa records: up to 20 domains in one call, processed concurrently, results returned in input order with a per-item error field and a count of failures. Same answer per item as the single /dns/aaaa endpoint (DNS AAAA record lookup). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of results matching the input domain list, where each item contains the AAAA records (IPv6 addresses) found for that domain, a per-item error field (null on success or an error message on failure), plus an overall count of how many domains failed to resolve.

## 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-records-bulk-lookup-98f06344/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)
