# netintel DNS Lookup with DNSSEC

> netintel DNS Lookup with DNSSEC is a paid API for AI agents from netintel.x.c00l.site, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Performs DNS record lookups with DNSSEC validation for a given domain name, returning records, TTLs, and security status

## Facts

- Endpoint: POST https://netintel.x.c00l.site/dns
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-dns-lookup-with-dnssec-69afc64a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VP5l2NT9qJE_4LgUeu94U

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 netintel-dns-lookup-with-dnssec-69afc64a -d '<json body>'
```

Example prompt: Can you do a DNS lookup for example.com and check whether DNSSEC is properly validated and returning authenticated data?

## When to prefer this

Choose this endpoint when you need DNS lookup combined with DNSSEC security validation in a single call and have no existing DNS resolver infrastructure. It is ideal for agents that need to verify domain integrity, diagnose DNS issues, or audit DNSSEC compliance without managing API keys or subscriptions — paying only $0.002 per call via x402. Prefer it over generic DNS resolvers when DNSSEC authenticated-data status matters to your use case.

## Known failure modes

- Domain does not exist — returns NXDOMAIN status in the record response
- DNSSEC validation failure — returns validation status as 'insecure' or 'bogus'
- Network timeout querying upstream resolvers — may return partial results or error
- Invalid domain name format — likely returns a 4xx error or validation error
- Payment not attached or insufficient — x402 payment required error

## How this service works

Paid-per-call network intelligence API: DNS with DNSSEC, email deliverability, TLS certificate inspection, IP/ASN lookup and DNS propagation. From $0.002 a call over x402. No account, no API key.

## Output

Returns a JSON object with the queried domain name, DNSSEC validation status (e.g. 'secure') and authenticatedData boolean, DNS records keyed by type (e.g. A, MX, TXT) with response time in milliseconds, status code (e.g. NOERROR), and answer records including TTL and data values, plus arrays for any warnings or resolver disagreements.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "example.com",
  "dnssec": {
   "validation": "secure",
   "authenticatedData": true
  },
  "records": {
   "A": {
    "ms": 41,
    "status": "NOERROR",
    "answers": [
     {
      "ttl": 300,
      "data": "104.20.23.154",
      "type": "A"
     }
    ]
   }
  },
  "warnings": [],
  "disagreements": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-dns-lookup-with-dnssec-69afc64a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel.x.c00l.site](https://www.zero.xyz/host/netintel.x.c00l.site/llms.txt)
