# IPIntel.ai WHOIS Lookup

> IPIntel.ai WHOIS Lookup is a paid API for AI agents from tools.ipintel.ai, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Performs a WHOIS lookup on a domain to retrieve registration details including registrar, nameservers, creation/expiration dates, and domain statuses.

## Facts

- Endpoint: POST https://tools.ipintel.ai/whois-lookup
- 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/ipintel-ai-whois-lookup-1bf3b415
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZWDzfI0IPwVwNToWKaaUy

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 ipintel-ai-whois-lookup-1bf3b415 -d '<json body>'
```

Example prompt: Can you pull the WHOIS record for openai.com — I want to know who the registrar is, when it expires, what nameservers it's using, and whether the contact info is redacted?

## When to prefer this

Use this endpoint when you need authoritative WHOIS registration data for a domain, including registrar identity, expiry dates, nameservers, and domain lock statuses. Prefer this over DNS lookup endpoints when the goal is ownership/registration metadata rather than DNS resolution records. Especially useful for domain expiry monitoring, fraud investigation, or due diligence workflows.

## Known failure modes

- Domain not found or not registered — returns ok:false or empty result
- Invalid domain format — returns error response
- WHOIS rate limiting by upstream server — may return incomplete data
- WHOIS data fully redacted — limited registration details returned
- Network timeout reaching WHOIS server — request fails

## How this service works

WHOIS Lookup API. Retrieve domain registration data including registrar, WHOIS server, creation date, expiration date, updated date, nameservers, domain status, and privacy/redaction signals. Useful for agents, developers, domain intelligence, expiry checks, registrar lookup, ownership investigation, and security workflows. Paid per call via x402.

## Output

Returns a JSON object with ok status, the queried domain, registrar name, WHOIS server, domain statuses (e.g. clientDeleteProhibited), nameservers list, creation/updated/expiration dates, a raw WHOIS text excerpt, and a flag indicating whether the record is privacy-redacted.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "additionalProperties": false,
     "properties": {
      "domain": {
       "type": "string",
       "description": "Domain name to query, for example example.com"
      }
     },
     "required": [
      "domain"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "additionalProperties": true,
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "service": {
       "type": "string"
      },
      "domain": {
       "type": "string"
      },
      "registrar": {
       "type": "string"
      },
      "whois_server": {
       "type": "string"
      },
      "creation_date": {
       "type": "string"
      },
      "updated_date": {
       "type": "string"
      },
      "expiration_date": {
       "type": "string"
      },
      "nameservers": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "statuses": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "is_redacted": {
       "type": "boolean"
      },
      "raw_excerpt": {
       "type": "string"
      },
      "timestamp": {
       "type": "string"
      }
     }
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "domain": "example.com",
  "service": "whois_lookup",
  "statuses": [
   "clientDeleteProhibited",
   "clientTransferProhibited"
  ],
  "registrar": "RESERVED-Internet Assigned Numbers Authority",
  "timestamp": "2026-06-22T20:00:00+00:00",
  "is_redacted": true,
  "nameservers": [
   "a.iana-servers.net",
   "b.iana-servers.net"
  ],
  "raw_excerpt": "Domain Name: EXAMPLE.COM\nRegistrar: RESERVED-Internet Assigned Numbers Authority\n...",
  "updated_date": "2024-08-14T07:01:34Z",
  "whois_server": "whois.iana.org",
  "creation_date": "1995-08-14T04:00:00Z",
  "expiration_date": "2025-08-13T04:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ipintel-ai-whois-lookup-1bf3b415/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tools.ipintel.ai](https://www.zero.xyz/host/tools.ipintel.ai/llms.txt)
