# dns-all-records

> dns-all-records 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).

Fetches all common DNS record types (A, AAAA, MX, TXT, NS, SOA, CNAME, CAA, HTTPS) plus DNSSEC validation state for a domain in a single call.

## Facts

- Endpoint: GET https://intel.rallylive.ca/dns/all
- 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-all-records-ad7471d2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lzhI3glHNNYXzdASxv-Eo

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-all-records-ad7471d2
```

Example prompt: Pull a complete DNS snapshot for example.com — I need all record types (A, AAAA, MX, TXT, NS, SOA, CNAME, CAA, HTTPS) plus the DNSSEC validation status in one shot.

## When to prefer this

Choose this endpoint when you need a comprehensive, all-in-one DNS snapshot of a domain in a single API call rather than making separate lookups for each record type. It is ideal for DNS audits, pre/post-migration comparisons, change tracking, and security reviews where completeness matters. Prefer it over individual record-type lookups when you need DNSSEC status alongside record data, or when minimizing API round-trips is important.

## Known failure modes

- Domain does not exist (NXDOMAIN) — returns empty or error response
- Domain has no records of certain types — those fields are empty or omitted
- DNSSEC state indeterminate if resolver cannot validate chain
- Network timeout if upstream DNS resolvers are slow
- Invalid or malformed domain input returns error
- Payment failure (x402) if USDC balance is insufficient

## How this service works

All common DNS records for a domain in one call: A, AAAA, MX, TXT, NS, SOA, CNAME, CAA and HTTPS, plus DNSSEC validation state. A complete DNS snapshot for audits, migrations and change tracking. $0.01 per domain.

## Output

Returns a structured object containing all resolved DNS record types for the queried domain — A, AAAA, MX, TXT, NS, SOA, CNAME, CAA, and HTTPS records — along with the domain's DNSSEC validation state, providing a complete DNS snapshot in a single response.

## 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-all-records-ad7471d2/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)
