# SiteSignal Public DNS Record Inventory

> SiteSignal Public DNS Record Inventory is a paid API for AI agents from phases-prot-shine-royal.trycloudflare.com, paid per call via x402, $0.03/call, status down (last checked 2026-09-16).

Retrieves a bounded inventory of public DNS records (A, AAAA, CNAME, NS, MX, TXT, CAA, HTTPS, SRV, SOA) for a given hostname or URL.

## Facts

- Endpoint: GET https://phases-prot-shine-royal.trycloudflare.com/x402/dns-inventory
- Price: $0.03/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sitesignal-public-dns-record-inventory-960f2c9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NtaTcWxbhsU-NyGsb2Ijy

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 sitesignal-public-dns-record-inventory-960f2c9d
```

Example prompt: Pull up all the public DNS records for github.com — I want to see the A, MX, TXT, NS, and SOA entries so I can understand how their DNS is configured.

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-record-type DNS snapshot for a single domain in one call, rather than querying individual record types separately. It is particularly useful for auditing, documentation, pre-migration checks, email deliverability troubleshooting, or security assessments where you need to see the full DNS posture of a hostname at once.

## Known failure modes

- Domain does not exist (NXDOMAIN) — returns empty or error response
- Domain has no records of a specific type — those record types may be omitted or return empty arrays
- Invalid hostname or malformed URL input — likely returns a 400-level error
- Temporary DNS resolution failure — may return partial results or timeout
- Private or internal hostnames not resolvable from public DNS — no results returned

## How this service works

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

## Output

Returns a structured inventory of all observed public DNS record types for the queried domain, including A (IPv4 addresses), AAAA (IPv6 addresses), CNAME (aliases), NS (nameservers), MX (mail exchangers), TXT (text records including SPF/DKIM/DMARC), CAA (certificate authority authorizations), HTTPS, SRV (service records), and SOA (start of authority). Results are bounded to a single DNS resolution pass.

## 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/sitesignal-public-dns-record-inventory-960f2c9d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from phases-prot-shine-royal.trycloudflare.com](https://www.zero.xyz/host/phases-prot-shine-royal.trycloudflare.com/llms.txt)
