# x402.fatihai.app DNS Lookup

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

Performs DNS record lookups for any domain, returning A, AAAA, MX, TXT, and NS records

## Facts

- Endpoint: GET https://x402.fatihai.app/api/dns-lookup
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-fatihai-app-31b10b59
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qaSIrtktUwn6U3PyMkKlN

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 x402-fatihai-app-31b10b59
```

Example prompt: Look up all the DNS records for github.com — I want to see its A, AAAA, MX, TXT, and NS records.

## When to prefer this

Use this endpoint when you need to quickly retrieve multiple DNS record types (A, AAAA, MX, TXT, NS) for a domain in a single call, especially in automated workflows involving email verification, domain validation, infrastructure checks, or network diagnostics. It charges a small per-call fee via x402 and is suited for on-demand lookups rather than bulk batch operations.

## Known failure modes

- Domain does not exist or is not resolvable — returns empty or error response
- Invalid domain name format — may return a validation error
- DNS lookup timeout for slow or unresponsive nameservers
- Network errors from the upstream DNS resolver

## How this service works

DNS record lookup for any domain. Returns A, AAAA, MX, TXT, NS records.

## Output

Returns DNS records for the queried domain, including A (IPv4 addresses), AAAA (IPv6 addresses), MX (mail exchange), TXT (text/verification records), and NS (nameserver) records.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "domain": "github.com"
  }
 }
}
```

## 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 name to lookup"
      }
     }
    }
   },
   "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/x402-fatihai-app-31b10b59/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.fatihai.app](https://www.zero.xyz/host/x402.fatihai.app/llms.txt)
