# Polyform Domain Registration Intelligence

> Polyform Domain Registration Intelligence is a paid API for AI agents from polyform.polyform-org.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns domain registration metadata including creation/expiry dates, age in days, registrar, statuses, and nameservers sourced from registry RDAP.

## Facts

- Endpoint: GET https://polyform.polyform-org.workers.dev/v1/domain/:domain
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polyform-domain-registration-intelligence-f148a10e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bf0fHednrn1YC_gc4u5Ns

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 polyform-domain-registration-intelligence-f148a10e
```

Example prompt: Can you look up the registration details for example.com — I need to know when it was created, when it expires, who the registrar is, and what nameservers it uses?

## When to prefer this

Choose this endpoint when you need authoritative, structured registration metadata for a domain — especially creation/expiry dates, registrar, and nameservers — without scraping WHOIS text. Prefer it over generic WHOIS tools because it uses structured RDAP (the modern registry standard), returning clean JSON. It is particularly useful for phishing detection (domain age), due diligence, domain expiry monitoring, and infrastructure audits. Pair with the sibling IP ownership or email validation endpoints for broader domain intelligence.

## Known failure modes

- Domain not found or not registered — registry returns no RDAP record
- TLD not supported by RDAP — some older or country-code TLDs may lack RDAP endpoints
- Network timeout reaching the registry RDAP service
- Rate limiting by the upstream registry RDAP server
- Malformed domain input causing a parse error

## How this service works

Registration intelligence for any domain: creation/expiry dates, age in days, registrar, statuses, nameservers. Source: registry RDAP. JSON.

## Output

A JSON object containing domain registration intelligence sourced from registry RDAP: creation date, expiry/deletion date, domain age in days, registrar name, current domain statuses (e.g. clientTransferProhibited), and nameservers. Data is authoritative as it comes directly from the registry.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/polyform-domain-registration-intelligence-f148a10e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from polyform.polyform-org.workers.dev](https://www.zero.xyz/host/polyform.polyform-org.workers.dev/llms.txt)
