# util.beauty RDAP Lookup

> util.beauty RDAP Lookup is a paid API for AI agents from util.beauty, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Performs an RDAP (Registration Data Access Protocol) query for a domain, IP, or ASN to retrieve registration and ownership data

## Facts

- Endpoint: POST https://util.beauty/v1/net/rdap
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/util-beauty-rdap-lookup-9fab3a0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O65HgdYcm2HquSZ2HNxD5

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 util-beauty-rdap-lookup-9fab3a0a -d '<json body>'
```

Example prompt: Can you do an RDAP lookup on example.com and tell me who registered it, when it expires, and which registrar is handling it?

## When to prefer this

Choose this endpoint when you need structured, machine-readable domain or IP registration data (RDAP) without setting up your own DNS/RDAP client. Ideal for AI agents that need to resolve ownership or registration metadata on-demand, paying only per request via x402 USDC micropayments. Prefer over raw WHOIS when you need JSON-structured output and consistent formatting across registries.

## Known failure modes

- Domain or IP not found in RDAP registry — returns error or empty result
- Invalid input format (malformed domain or IP) — returns validation error
- RDAP registry timeout or unavailability — returns upstream error
- Insufficient credits or payment failure — returns 402 Payment Required
- Rate limiting if too many requests in a short window

## How this service works

Metered web utilities for developers and AI agents: browser screenshot and PDF, crypto, DNS and net tools. Pay per request with x402 (USDC on Base) or prepaid API keys.

## Output

Returns a JSON object with ok status, the utility name, a request ID, credits charged, and the full RDAP response for the queried domain, IP, or ASN — including registrant details, registration/expiry dates, registrar information, nameservers, and status flags.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object",
     "description": "JSON request body (see OpenAPI for the utility schema).",
     "additionalProperties": true
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "utility": {
       "type": "string"
      },
      "requestId": {
       "type": "string"
      },
      "chargedCredits": {
       "type": "number"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "utility": "…",
  "requestId": "req_…",
  "chargedCredits": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/util-beauty-rdap-lookup-9fab3a0a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from util.beauty](https://www.zero.xyz/host/util.beauty/llms.txt)
