# DNS Record Inventory Lookup

> DNS Record Inventory Lookup is a paid API for AI agents from holder-victor-nova-mag.trycloudflare.com, paid per call via x402, $0.03/call, status down (last checked 2026-09-15).

Retrieves all public DNS records (A, AAAA, CNAME, NS, MX, TXT, CAA, HTTPS, SRV, SOA) for a given domain or URL

## Facts

- Endpoint: GET https://holder-victor-nova-mag.trycloudflare.com/x402/dns-inventory
- Price: $0.03/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dns-record-inventory-lookup-2ffc9ade
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2SkewPh7Zjt5cAx0sslD8

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-record-inventory-lookup-2ffc9ade
```

Example prompt: Can you pull up all the DNS records for stripe.com — I want to see everything: A, MX, TXT, NS, CAA, CNAME, SOA, the works.

## When to prefer this

Use this endpoint when you need a comprehensive, multi-record-type DNS snapshot of a domain in a single call rather than querying individual record types separately. Ideal for domain audits, security checks, email deliverability diagnostics, or infrastructure reconnaissance where a full DNS picture is needed.

## Known failure modes

- Domain does not exist (NXDOMAIN) — returns empty or error result
- Invalid domain format — input validation error
- DNS timeout or resolution failure — network error response
- Rate limiting if too many queries are issued rapidly

## How this service works

Inventory bounded public DNS answers for A, AAAA, CNAME, NS, MX, TXT, CAA, HTTPS SRV, and SOA record types.

## Output

A structured inventory of all discoverable public DNS record types for the queried domain, including A, AAAA, CNAME, NS, MX, TXT, CAA, HTTPS, SRV, and SOA records with their values and TTLs.

## 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",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Public DNS hostname or HTTP(S) URL."
      }
     }
    }
   },
   "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-record-inventory-lookup-2ffc9ade/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from holder-victor-nova-mag.trycloudflare.com](https://www.zero.xyz/host/holder-victor-nova-mag.trycloudflare.com/llms.txt)
