The WHOIS lookup for a domain, answered from the registry's own RDAP service - the structu
The WHOIS lookup for a domain, answered from the registry's own RDAP service - the structured successor to port-43 WHOIS, read live via the IANA bootstrap, never scraped WHOIS text. Registrar and IANA id, RDAP/EPP status codes, creation, update and expiry dates, nameservers, DNSSEC, days until expiry and the terms link. Registrant contacts are redacted by registries. Use when: Answer a WHOIS question about a domain - registrar, creation date, expiry, transfer lock - from the registry record.
4000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-27
updated
Provider
api.eckari.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9d6b6fdB04040a55d58B24ff4C90C08cf6083C8f",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "4000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"domain": "example.com"
},
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"data": {
"auto_renew_flag": null,
"availability_note": null,
"bootstrap_suffix": "com",
"days_until_expiry": 359,
"dnssec_signed": true,
"domain": "example.com",
"events": {
"expires_at": "2027-08-13T04:00:00.000Z",
"registered_at": "1995-08-14T04:00:00.000Z",
"transferred_at": null,
"updated_at": "2026-08-14T08:01:43.000Z"
},
"is_registered": true,
"nameservers": [
"elliott.ns.cloudflare.com",
"hera.ns.cloudflare.com"
],
"rdap_last_update": "2026-08-18T13:20:14.000Z",
"rdap_server": "https://rdap.verisign.com/com/v1/",
"registrar": {
"abuse_email": null,
"iana_id": "376",
"name": "RESERVED-Internet Assigned Numbers Authority",
"url": null
},
"status": [
"client delete prohibited",
"client transfer prohibited",
"client update prohibited"
],
"terms_url": "https://www.verisign.com/domain-names/registration-data-access-protocol/terms-service/index.xhtml",
"tld": "com",
"unicode_name": null
},
"meta": {
"capability": "domain.registration",
"freshness": "near_live",
"source": "rdap",
"version": "2.1.0"
}
},
"type": "json"
}
},
"routeTemplate": "/v1/domains/:domain/registration",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"pathParams": {
"additionalProperties": false,
"properties": {
"domain": {
"description": "Bare domain name such as example.com or bbc.co.uk. Internationalised names are converted to punycode (IDNA). URLs, paths, ports and single-label names are rejected.",
"maxLength": 253,
"minLength": 3,
"pattern": "^[^ /:?#@]{3,253}$",
"type": "string"
}
},
"required": [
"domain"
],
"type": "object"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"id": {
"maxLength": 128,
"minLength": 16,
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"required"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.eckari.com/v1/domains/:domain/registration" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.eckari.com/v1/domains/:domain/registration");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.eckari.com/v1/domains/:domain/registration")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4322.json, and this resource appears in /discovery/resources and /discovery/search.