# Eckari Domain Registration Lookup

> Eckari Domain Registration Lookup is a paid API for AI agents from api.eckari.com, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-10).

Retrieves RDAP-sourced domain registration details for a given domain, including registrar, status, nameservers, expiry, and DNSSEC info.

## Facts

- Endpoint: GET https://api.eckari.com/v1/domains/%7Bdomain%7D/registration
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-10
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eckari-domain-registration-lookup-46f036e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w5Sp4u7irlyO-ojUqqNts

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 eckari-domain-registration-lookup-46f036e5
```

Example prompt: Can you pull up the registration details for eckari.com — I want to know who the registrar is, when it expires, and whether DNSSEC is enabled?

## When to prefer this

Use this endpoint when you need structured, machine-readable domain registration data (registrar, expiry, nameservers, DNSSEC, status flags) sourced from RDAP rather than legacy WHOIS. Prefer it over WHOIS parsers because RDAP returns consistent JSON. Ideal for domain monitoring, pre-acquisition research, compliance checks, or verifying DNS configuration. The near-live freshness makes it suitable for time-sensitive checks.

## Known failure modes

- Domain not found or unregistered — may return is_registered: false with minimal data
- Invalid domain format — malformed input may return a 4xx error
- RDAP server unavailable for a particular TLD — lookup may fail or return stale data
- Very new TLDs or private registries may not have RDAP coverage
- Rate limiting or payment failure via x402 — returns 402 Payment Required

## How this service works

Eckari is the machine-native utility layer for capabilities agents do not already have. Every route is a provider-neutral capability with channel pricing for Eckari account keys and accountless x402 payment.

## Output

A JSON object containing full RDAP-sourced registration data for the domain: TLD, registration/expiry/update timestamps, domain status flags (e.g. client transfer prohibited), registrar name and IANA ID, nameservers, DNSSEC signing status, availability note, days until expiry, and metadata about data source, freshness, and capability version.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "tld": "com",
   "domain": "example.com",
   "events": {
    "expires_at": "2027-08-13T04:00:00.000Z",
    "updated_at": "2026-08-14T08:01:43.000Z",
    "registered_at": "1995-08-14T04:00:00.000Z",
    "transferred_at": null
   },
   "status": [
    "client delete prohibited",
    "client transfer prohibited",
    "client update prohibited"
   ],
   "registrar": {
    "url": null,
    "name": "RESERVED-Internet Assigned Numbers Authority",
    "iana_id": "376",
    "abuse_email": null
   },
   "terms_url": "https://www.verisign.com/domain-names/registration-data-access-protocol/terms-service/index.xhtml",
   "nameservers": [
    "elliott.ns.cloudflare.com",
    "hera.ns.cloudflare.com"
   ],
   "rdap_server": "https://rdap.verisign.com/com/v1/",
   "unicode_name": null,
   "dnssec_signed": true,
   "is_registered": true,
   "auto_renew_flag": null,
   "bootstrap_suffix": "com",
   "rdap_last_update": "2026-08-18T13:20:14.000Z",
   "availability_note": null,
   "days_until_expiry": 359
  },
  "meta": {
   "source": "rdap",
   "version": "2.1.0",
   "freshness": "near_live",
   "capability": "domain.registration"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eckari-domain-registration-lookup-46f036e5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.eckari.com](https://www.zero.xyz/host/api.eckari.com/llms.txt)
