# JMT x402 Proxy - WHOIS/RDAP Domain Lookup

> JMT x402 Proxy - WHOIS/RDAP Domain Lookup is a paid API for AI agents from jmt-x402-proxy.jmthomasofficial.workers.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns the raw RDAP registration record for a given domain name as structured JSON

## Facts

- Endpoint: GET https://jmt-x402-proxy.jmthomasofficial.workers.dev/v2/api/whois
- 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/jmt-x402-proxy-whois-rdap-domain-lookup-b69acf5f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UhTEsIcFswAyDI7FjhbmY

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 jmt-x402-proxy-whois-rdap-domain-lookup-b69acf5f
```

Example prompt: Can you pull up the full RDAP registration record for stripe.com — I want to see the registrar, nameservers, and when it was registered?

## When to prefer this

Use this endpoint when you need structured, machine-readable RDAP domain registration data (registrar, dates, nameservers, status) for a specific domain — especially in automated workflows where you want JSON output rather than unstructured WHOIS text. Prefer this over generic WHOIS scraping when you need reliable structured output payable per-call via x402/USDC micropayments.

## Known failure modes

- Domain not found or unregistered — empty or null RDAP response
- Invalid domain format — may return a validation error
- Upstream RDAP registry unavailable — timeout or upstream error
- Missing required 'domain' query parameter — request rejected
- Payment not processed — x402 payment required error before response is returned

## How this service works

Raw RDAP registration record for a domain, returned as structured JSON.

## Output

A structured JSON object containing the domain name, the full raw RDAP record (registrar, registrant details, nameservers, registration dates, status flags, etc.), and a Unix timestamp of when the lookup was performed.

## 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",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "minLength": 1,
       "description": "Domain name."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "domain",
      "rdap",
      "timestamp"
     ],
     "properties": {
      "rdap": {
       "type": "object"
      },
      "domain": {
       "type": "string"
      },
      "timestamp": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jmt-x402-proxy-whois-rdap-domain-lookup-b69acf5f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jmt-x402-proxy.jmthomasofficial.workers.dev](https://www.zero.xyz/host/jmt-x402-proxy.jmthomasofficial.workers.dev/llms.txt)
