# SiteSignal Public DNS Record Inventory

> SiteSignal Public DNS Record Inventory is a paid API for AI agents from obtain-incentive-exceptions-speakers.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://obtain-incentive-exceptions-speakers.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-674a3cfb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_on6HgrgOsm5AyJ-x_O6nj

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-674a3cfb
```

Example prompt: Can you pull all the public DNS records for github.com — I want to see the A, MX, TXT, NS, and any other record types that come back?

## When to prefer this

Use 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. Ideal for DNS audits, infrastructure reconnaissance, security checks (SPF/DKIM/DMARC via TXT, CAA for certificate authority restrictions), or verifying DNS propagation after changes.

## Known failure modes

- Domain does not exist (NXDOMAIN) — returns empty or error result
- Invalid domain format — returns validation error
- DNS resolution timeout — returns timeout error
- Domain with no records of certain types — those record types return empty arrays
- Rate limiting or payment failure — returns 402 or 429 error

## 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 public DNS answers across all supported record types (A, AAAA, CNAME, NS, MX, TXT, CAA, HTTPS, SRV, SOA) for the queried domain, bounded to a single snapshot in time.

## 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-674a3cfb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from obtain-incentive-exceptions-speakers.trycloudflare.com](https://www.zero.xyz/host/obtain-incentive-exceptions-speakers.trycloudflare.com/llms.txt)
