# Polyform Domain WHOIS & Age Lookup

> Polyform Domain WHOIS & Age Lookup is a paid API for AI agents from api.polyform.org, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns WHOIS-style data for a domain including registration date, age in days, registrar, and nameservers — paid per call with USDC via x402.

## Facts

- Endpoint: GET https://api.polyform.org/v1/domain/%7Bdomain%7D
- 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-whois-age-lookup-2b7e248c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FKg8Qcx0-0y39eeOecfGJ

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-whois-age-lookup-2b7e248c
```

Example prompt: How old is stripe.com and who registered it? I want to know the creation date, registrar, and nameservers.

## When to prefer this

Use this endpoint when you need fast, pay-per-call domain age and WHOIS metadata without creating an account or managing API keys. Ideal for agents performing one-off domain lookups for fraud detection, trust scoring, or competitive research. Prefer this over traditional WHOIS tools when operating in an autonomous agent context with x402 micropayment capability already set up.

## Known failure modes

- Domain not found in registry — returns empty or error response
- Invalid domain format — malformed input string rejected
- Payment failure — x402 micropayment not completed, call not fulfilled
- Rate or network timeout — transient infrastructure issue
- Newly registered domains may have propagation lag in WHOIS data

## How this service works

Pay-per-call data endpoints for AI agents. USDC on Base via x402. No account, no API key — one micropayment per call.

## Output

A JSON object containing the queried domain name, its age in days since registration, the ISO creation date string, the registrar name, and an array of nameserver hostnames.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "domain": "example.com",
  "ageDays": 11334,
  "created": "1995-08-14",
  "registrar": "RESERVED",
  "nameservers": [
   "A.IANA-SERVERS.NET"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/polyform-domain-whois-age-lookup-2b7e248c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.polyform.org](https://www.zero.xyz/host/api.polyform.org/llms.txt)
