# GetApi DNS Nameserver Lookup

> GetApi DNS Nameserver Lookup is a paid API for AI agents from api.getapi.nl, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Looks up the authoritative nameservers for a given domain name via DNS query

## Facts

- Endpoint: GET https://api.getapi.nl/api/v1/lookup/dns/nameservers
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/getapi-dns-nameserver-lookup-80e9909c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V1gsyKmNVeXd3BqkYYKef

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 getapi-dns-nameserver-lookup-80e9909c
```

Example prompt: Can you look up the nameservers for shopify.com and tell me which DNS provider they're using?

## When to prefer this

Use this endpoint when you need a simple, pay-per-call DNS nameserver lookup without managing your own DNS resolver infrastructure. Ideal for agents that occasionally need to check nameserver records for domain verification, auditing, or infrastructure reconnaissance at low cost ($0.01 per call).

## Known failure modes

- Domain not found or not registered — returns found: false with empty nameservers array
- Invalid domain format — may return an error or found: false
- Network timeout resolving DNS — transient failure requiring retry
- Payment failure via x402 protocol — 402 response if payment is not provided

## How this service works

Ontdek, test en integreer krachtige API&#039;s voor web scraping, e-mailvalidatie, geolocatie
    en meer. Gratis starten.

## Output

Returns a JSON object indicating whether the domain was found (boolean), the queried domain name, and an array of authoritative nameserver hostnames (e.g. ['a.iana-servers.net', 'b.iana-servers.net']).

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "domain": "example.com"
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {
     "found": true,
     "domain": "example.com",
     "nameservers": [
      "a.iana-servers.net",
      "b.iana-servers.net"
     ]
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "found": true,
  "domain": "example.com",
  "nameservers": [
   "a.iana-servers.net",
   "b.iana-servers.net"
  ]
 }
}
```

## More

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