# Strale WHOIS Lookup

> Strale WHOIS Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054/call, status unknown (last checked 2026-09-15).

Performs a WHOIS lookup for a given domain name, returning registration, ownership, and DNS metadata with a cryptographic audit record.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/whois-lookup
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-whois-lookup-874f6303
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RV1gfr_lOQ_p2CzjkYVWg

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 strale-whois-lookup-874f6303
```

Example prompt: Can you do a WHOIS lookup on strale.io and tell me who registered it, when it expires, and which registrar is managing it?

## When to prefer this

Choose this endpoint when you need auditable, verifiable WHOIS lookups with cryptographic proof of the response. Particularly useful for compliance workflows, fraud investigation, or any context where you need a trusted, tamper-evident record of domain ownership data. Covers 27 countries and 250+ capabilities in the same platform if you need complementary data enrichment.

## Known failure modes

- Domain not found or not registered — returns empty or NXDOMAIN-equivalent response
- WHOIS privacy/redaction — registrant contact info may be masked by privacy services
- Rate limiting by upstream WHOIS servers — may return partial or delayed data
- Invalid domain format — request rejected with validation error
- TLD not supported — some ccTLDs may have restricted WHOIS access

## How this service works

Perform a WHOIS lookup for a domain. Returns registrar, creation date, expiry date, name servers, registrant info, and raw WHOIS data.

## Output

Returns WHOIS record data including registrant details (name, organization, email if public), registrar, registration date, expiry date, nameservers, and domain status flags. Every response includes a cryptographic audit record with chain hashing for verifiability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "domain"
 ],
 "properties": {
  "domain": {
   "type": "string",
   "description": "Domain name (e.g. example.com)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "domain": {
  "type": "string"
 },
 "created": {
  "type": "string"
 },
 "expires": {
  "type": "string"
 },
 "registrar": {
  "type": "string"
 },
 "name_servers": {
  "type": "array"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-whois-lookup-874f6303/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
