# Orbonomy DNS Lookup API

> Orbonomy DNS Lookup API is a paid API for AI agents from www.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Performs DNS record lookups for a given domain, returning the requested record type

## Facts

- Endpoint: POST https://www.orbonomy.xyz/api/data/dns
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-dns-lookup-api-e8246a64
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_win-qcOc1PdHEm_Rn7rCN

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 orbonomy-dns-lookup-api-e8246a64 -d '<json body>'
```

Example prompt: Look up the MX records for example.com so I can see what mail servers it's using.

## When to prefer this

Use this endpoint when you need programmatic DNS record lookups without setting up your own DNS resolver infrastructure. Suitable for one-off or pay-per-use DNS queries billed per call via USDC, ideal for agents that occasionally need DNS information without committing to a subscription.

## Known failure modes

- Domain does not exist — may return success: false or empty record set
- Invalid DNS record type provided — may return error or empty result
- Network timeout querying upstream DNS resolvers
- Malformed domain input causing validation error
- Rate limiting or payment failure via x402 protocol

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

Returns a JSON object with a success boolean and the DNS record data for the requested record type and domain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "type",
  "domain"
 ],
 "properties": {
  "type": {
   "type": "string"
  },
  "domain": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

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