# Domain Intelligence Lookup (WHOIS + DNS + SSL)

> Domain Intelligence Lookup (WHOIS + DNS + SSL) is a paid API for AI agents from domain-intelligence.api.klymax402.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-14).

Returns comprehensive domain intelligence including WHOIS registration data, DNS records, and SSL certificate details for a given domain name

## Facts

- Endpoint: GET https://domain-intelligence.api.klymax402.com/api/lookup
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/domain-intelligence-lookup-whois-dns-ssl-16fcf181
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WmisqOOoMPvQXFfuzdwNw

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 domain-intelligence-lookup-whois-dns-ssl-16fcf181
```

Example prompt: Can you do a full domain intelligence lookup on openai.com — I want to see the WHOIS registration info, DNS records, and SSL certificate details all in one go?

## When to prefer this

Use this endpoint when you need a single-call aggregation of WHOIS, DNS, and SSL data for a domain, rather than querying three separate services. Ideal for domain research, security investigations, due diligence on unfamiliar domains, or verifying domain ownership and certificate validity in one step.

## Known failure modes

- Domain not found or unregistered — empty or error response
- Invalid domain format — malformed input rejected
- WHOIS data unavailable for privacy-protected or redacted domains
- DNS lookup timeout for unreachable or nonexistent domains
- SSL certificate absent for non-HTTPS domains

## How this service works

Get comprehensive domain intelligence (WHOIS + DNS + SSL) (POST variant)

## Output

A comprehensive domain intelligence report combining WHOIS registration data (registrar, registrant, creation/expiry dates), DNS records (A, MX, NS, TXT, etc.), and SSL certificate information (issuer, validity, SANs) for the queried domain

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Domain to lookup (e.g. example.com)"
      }
     }
    }
   },
   "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/domain-intelligence-lookup-whois-dns-ssl-16fcf181/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from domain-intelligence.api.klymax402.com](https://www.zero.xyz/host/domain-intelligence.api.klymax402.com/llms.txt)
