# Revnuvo DNS Lookup & Domain Verification

> Revnuvo DNS Lookup & Domain Verification is a paid API for AI agents from resource.revnuvo.site, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Performs a full DNS record lookup (A, AAAA, MX, NS, TXT, CNAME) for a given domain, enabling domain verification and trust assessment.

## Facts

- Endpoint: POST https://resource.revnuvo.site/domain/dns
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/revnuvo-dns-lookup-domain-verification-dbaf5b80
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__LVnDYWv9IcZ4cvLR-2UO

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 revnuvo-dns-lookup-domain-verification-dbaf5b80 -d '<json body>'
```

Example prompt: Can you do a full DNS lookup on openai.com and show me all its A, MX, NS, and TXT records so I can verify how it's configured?

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-record-type DNS lookup in a single call and are operating in an x402 micropayment environment on Base. It is well-suited for AI agents performing domain trust assessments, email deliverability checks, or infrastructure audits where all standard DNS record types are needed simultaneously rather than querying a public resolver manually.

## Known failure modes

- Domain does not exist (NXDOMAIN) — may return empty record arrays or an error response
- Malformed domain input — missing or invalid domain string returns a validation error
- DNS timeout — upstream resolver may fail for unreachable or misconfigured domains
- Payment failure — x402 USDC payment not processed, request rejected before execution

## How this service works

Domain verification, DNS lookup, and trust assessment for AI agents and developers. x402 USDC payments on Base.

## Output

Returns a JSON object containing the domain name, arrays of DNS records by type (A, AAAA, MX, NS, TXT, CNAME), and a resolved_at timestamp indicating when the lookup was performed. Empty arrays indicate no records of that type exist.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "domain"
 ],
 "properties": {
  "domain": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "a": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "mx": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "ns": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "txt": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "aaaa": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "cname": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "domain": {
   "type": "string"
  },
  "resolved_at": {
   "type": "string",
   "format": "date-time"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/revnuvo-dns-lookup-domain-verification-dbaf5b80/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from resource.revnuvo.site](https://www.zero.xyz/host/resource.revnuvo.site/llms.txt)
