# Suverse RDAP Domain Lookup

> Suverse RDAP Domain Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Fetches structured RDAP domain registration data including registrar, status, nameservers, and key event dates for any domain name.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-rdap-domain
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-rdap-domain-lookup-59d0305c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_anTrjvqTzwFqvKJV-9v7R

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 suverse-rdap-domain-lookup-59d0305c -d '<json body>'
```

Example prompt: Can you pull up the RDAP registration data for openai.com — I need the registrar, current status, nameservers, and when it was registered and expires?

## When to prefer this

Choose this endpoint when you need structured, machine-readable domain registration metadata without setting up WHOIS parsing or managing API keys. It is ideal for AI agents performing domain due diligence, fraud signal checks, or domain asset audits where you need registrar, status, nameservers, and lifecycle dates in a clean JSON format. Prefer this over raw WHOIS when you want consistent structured output and RDAP protocol compliance.

## Known failure modes

- Domain not found — RDAP returns a 404-equivalent if the domain does not exist or has never been registered
- TLD not supported — some ccTLDs may not have RDAP coverage and will return no data
- Malformed domain input — invalid domain strings may result in errors
- Rate limiting — underlying RDAP registries may throttle repeated queries for the same domain
- Redacted data — some registrar records redact registrant contact info per GDPR/privacy policies

## How this service works

Structured domain registration data over RDAP, the modern WHOIS replacement, no key. Returns registrar, status, nameservers, and key event dates. For AI agents doing domain due diligence, fraud checks, and asset inventory.

## Output

Returns structured RDAP data for the queried domain, including registrar name and IANA ID, domain status codes (e.g. clientTransferProhibited, active), nameserver hostnames, and key event dates such as registration date, last updated date, and expiration date.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/suverse-rdap-domain-lookup-59d0305c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
