# RDAP Domain Registration Lookup

> RDAP Domain Registration Lookup is a paid API for AI agents from pyfile-agent.taile3ff35.ts.net:10000, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Fetches RDAP (Registration Data Access Protocol) domain registration data for a given domain name

## Facts

- Endpoint: GET https://pyfile-agent.taile3ff35.ts.net:10000/data/whois
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rdap-domain-registration-lookup-06912619
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9BVJvOpOcetdSV25Szk8e

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 rdap-domain-registration-lookup-06912619
```

Example prompt: Can you pull up the RDAP registration data for stripe.com — I want to know who registered it, which registrar they used, and when it expires?

## When to prefer this

Use this endpoint when you need authoritative, structured domain registration data (RDAP format) including registrar, dates, nameservers, and status — preferred over raw WHOIS text parsing because RDAP returns clean JSON. Choose this when vetting domains for due diligence, monitoring expiry dates, investigating suspicious domains, or enriching domain intelligence pipelines. Not suitable if you need DNS resolution, SSL certificate info, or subdomain enumeration (see sibling endpoints for those).

## Known failure modes

- Domain not found or not registered returns an error or empty RDAP response
- Unsupported TLD may not have an RDAP endpoint, causing lookup failure
- Rate limiting by the upstream RDAP registry can cause timeouts
- Malformed domain name input may return a validation error
- Some registries redact all registrant contact info due to GDPR/privacy policies

## How this service works

Domain registration data (RDAP). ?domain=github.com

## Output

Returns structured RDAP JSON data for the queried domain, including registrar name, registration and expiration dates, domain status flags, nameservers, and where available, registrant/abuse contact details — sourced directly from the authoritative RDAP registry for that TLD.

## 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"
      }
     }
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rdap-domain-registration-lookup-06912619/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pyfile-agent.taile3ff35.ts.net:10000](https://www.zero.xyz/host/pyfile-agent.taile3ff35.ts.net%3A10000/llms.txt)
