# DNS TTL Audit

> DNS TTL Audit 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).

Returns cache time-to-live values for A, AAAA, MX, NS, and TXT DNS records for a domain, with plain-English notes flagging values that are too high for safe migration or unusually low.

## Facts

- Endpoint: GET https://intel.rallylive.ca/dns/ttl
- 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-ttl-audit-c56da7bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wek78LEhjZaNpnz5CHv_7

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-ttl-audit-c56da7bc
```

Example prompt: Before I switch hosting providers for acmecorp.com next week, can you audit the DNS TTL values for all its A, AAAA, MX, NS, and TXT records and flag any that are too high to safely cut over?

## When to prefer this

Choose this endpoint when you need a consolidated TTL audit across all major DNS record types (A, AAAA, MX, NS, TXT) with human-readable migration guidance, rather than doing individual per-record lookups. Ideal for pre-migration planning, diagnosing slow propagation, or periodic DNS hygiene checks. Prefer over raw DNS lookup endpoints when you need actionable commentary on TTL safety, not just raw values.

## Known failure modes

- Domain does not exist or is unresolvable — returns empty or error response
- DNS records of a specific type are absent for the domain — that record type may be omitted or null
- Network timeout if DNS resolution is slow
- Invalid or malformed domain name input returns an error
- Domain uses private or non-public DNS and records are not reachable

## How this service works

DNS TTL audit: the cache time-to-live for A, AAAA, MX, NS and TXT records with plain-English notes on which are too high for a safe migration and which are unusually low. Plan DNS cutovers with confidence. $0.01 per domain.

## Output

Returns TTL values (in seconds) for A, AAAA, MX, NS, and TXT DNS records, accompanied by plain-English notes identifying which TTL values are dangerously high for a safe migration window and which are unusually low, enabling confident planning of DNS cutovers.

## 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-ttl-audit-c56da7bc/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)
