# x402node WHOIS/RDAP Domain Lookup

> x402node WHOIS/RDAP Domain Lookup is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns WHOIS data via the modern RDAP protocol for a given domain: registrant, registrar, dates, nameservers, and status flags

## Facts

- Endpoint: GET https://api.x402node.dev/domain/whois
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-x402node-dev-7424f5e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2gjkQjTF-cC-0Y47H4LnM

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 api-x402node-dev-7424f5e0
```

Example prompt: Can you pull up the WHOIS details for openai.com — I want to know who the registrar is, when it was registered, when it expires, and what nameservers it's using?

## When to prefer this

Use this endpoint when you need structured, machine-readable WHOIS/RDAP data (RFC 7480 compliant) without needing your own API key or WHOIS client. Prefer this over raw WHOIS scraping when you need reliable parsed fields like registrar, dates, and nameservers. Ideal for agents doing domain research, due diligence, or monitoring.

## Known failure modes

- Domain not found or unregistered — returns empty or error response
- Invalid domain format — malformed query rejected
- RDAP registry unavailable for TLD — upstream timeout or error
- Rate limiting if called excessively — payment per call mitigates this but upstream limits may apply

## How this service works

Modern WHOIS via RDAP protocol (RFC 7480): registrant, registrar, registration date, expiry, nameservers, status flags. Use ?domain=example.com. Accepts payment on Base or Solana — either network works.

## Output

Returns structured RDAP-based WHOIS data including registrant contact info, registrar name, registration date, expiry date, nameserver list, and domain status flags for the queried domain.

## 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",
     "properties": {
      "domain": {
       "type": "string",
       "description": "Domain name (optional)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-x402node-dev-7424f5e0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
