# API Zavod Domain RDAP Lookup

> API Zavod Domain RDAP Lookup is a paid API for AI agents from it.finlandfoxvpn.shop, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Fetches RDAP (Registration Data Access Protocol) registration data for a given domain name, including nameservers, events, and statuses

## Facts

- Endpoint: GET https://it.finlandfoxvpn.shop/api/v1/domain/rdap
- 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/api-zavod-domain-rdap-lookup-c90d6d06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hklwLfwyuqBjhSXUsL6w4

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 api-zavod-domain-rdap-lookup-c90d6d06
```

Example prompt: Can you pull the RDAP registration data for example.com — I want to see its nameservers, registration events, and current status?

## When to prefer this

Use this endpoint when you need structured RDAP registration data (nameservers, events, statuses) for a domain and want a paid, reliable micro-service approach via x402 without managing RDAP registry connections yourself. Prefer this over raw WHOIS when you need machine-readable JSON output. Good for single-domain lookups in automated pipelines.

## Known failure modes

- Domain not found in RDAP registry — returns empty or null record
- Invalid domain format — query parameter missing or malformed
- RDAP registry for the TLD is unavailable or rate-limited — may return error or timeout
- Payment failure via x402 protocol — request rejected before processing
- Network timeout reaching the upstream RDAP service

## How this service works

Domain RDAP registration lookup / Регистрационные данные домена

## Output

Returns a JSON object containing the domain name, an array of nameservers, a map of registration events (e.g. registration date, expiry, last changed), and an array of domain statuses (e.g. clientTransferProhibited). Labels may be in Russian (домен, события, статусы) matching the provider's bilingual schema.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "домен": "example.com",
  "nameservers": [],
  "события": {},
  "статусы": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-zavod-domain-rdap-lookup-c90d6d06/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from it.finlandfoxvpn.shop](https://www.zero.xyz/host/it.finlandfoxvpn.shop/llms.txt)
