# WHOIS Lite via RDAP

> WHOIS Lite via RDAP is a paid API for AI agents from vending-machine-seven.vercel.app, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Returns domain registration status, registrar name, registration/expiry dates, and nameservers using RDAP (lite fields only)

## Facts

- Endpoint: GET https://vending-machine-seven.vercel.app/api/v/whois-lite
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whois-lite-via-rdap-b06151dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g2UbvL5IyOy0uQE197xcE

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 whois-lite-via-rdap-b06151dc
```

Example prompt: Can you pull up the WHOIS registration info 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 fast, lightweight domain registration metadata (registrar, dates, nameservers, status) without full contact/registrant details. Prefer over full WHOIS scraping when only structural domain info is needed. Ideal for brand protection pipelines, security agents checking domain age/registrar, or outreach tools validating domain legitimacy. Use the sibling domain-bundle endpoint if you also need DNS and TLS info in one call.

## Known failure modes

- Domain not found in RDAP — returns ok: false or empty result
- Invalid domain format provided — query param validation error
- RDAP registry for the TLD unavailable — upstream timeout or error
- Rate limiting or upstream RDAP service outage — 5xx or timeout response

## How this service works

Domain registration status, registrar, dates, and nameservers via RDAP (lite fields only)

## Output

Returns a JSON object with fields: ok (boolean), domain (string), registrar (string), registration status, registration and expiry dates, nameservers, and the data source (RDAP service used). Lite fields only — no full contact records.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Domain e.g. example.com"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "domain": {
       "type": "string"
      },
      "source": {
       "type": "string"
      },
      "service": {
       "type": "string"
      },
      "registrar": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whois-lite-via-rdap-b06151dc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vending-machine-seven.vercel.app](https://www.zero.xyz/host/vending-machine-seven.vercel.app/llms.txt)
