# klymax402 DNS Lookup API

> klymax402 DNS Lookup API is a paid API for AI agents from klymax402.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Performs DNS record lookups for a given domain, returning records of a specified type (A, AAAA, MX, TXT, CNAME, NS, SOA, SRV)

## Facts

- Endpoint: GET https://klymax402.com/api/dns-lookup/api/lookup
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-dns-lookup-api-79f78291
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qRxEVDJA2ap7uIdAuEYAM

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 klymax402-dns-lookup-api-79f78291
```

Example prompt: Can you look up the MX records for gmail.com so I can see what mail servers Google uses?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call DNS lookup without managing API keys or infrastructure. Ideal for AI agents that occasionally need to resolve or verify DNS records across multiple types (A, MX, TXT, CNAME, etc.) without subscribing to a dedicated DNS API service. At $0.005 per call via USDC on Base, it suits low-to-medium frequency lookups where simplicity and no-key access matter.

## Known failure modes

- Domain does not exist — returns empty records array or NXDOMAIN error
- Invalid DNS record type specified — may return error or default to A record
- Network/resolver timeout — elevated query time or timeout error
- Malformed domain input — returns validation error
- DNS propagation delay — records may not reflect recent changes

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object containing the queried domain, DNS record type, an array of matching DNS records, the resolver used, and the query time in milliseconds.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "type": {
   "type": "string",
   "description": "DNS record type: A, AAAA, MX, TXT, CNAME, NS, SOA, SRV (default: A)"
  },
  "domain": {
   "type": "string",
   "description": "Domain name to lookup (e.g. example.com)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "type": "example",
  "domain": "example",
  "records": [],
  "resolver": "example",
  "queryTime": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-dns-lookup-api-79f78291/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
