# DNS NS Record Lookup

> DNS NS Record Lookup is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Looks up the authoritative nameservers (NS records) for a domain and identifies the DNS hosting provider (e.g. Cloudflare, Route 53, Google Cloud DNS).

## Facts

- Endpoint: GET https://intel.rallylive.ca/dns/ns
- 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/dns-ns-record-lookup-3f71aed7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hwx9oB1BJef0ryeLXt8jd

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 dns-ns-record-lookup-3f71aed7
```

Example prompt: What are the authoritative nameservers for stripe.com, and which DNS hosting provider are they using?

## When to prefer this

Use this endpoint when you need to quickly determine who hosts DNS for a domain without running local dig/nslookup commands, or when you need programmatic access to NS records with automatic DNS provider identification. Ideal for infrastructure audits, migration verification, and competitive research.

## Known failure modes

- Domain does not exist or has no NS records — returns empty or error response
- Network timeout reaching upstream DNS resolvers
- Invalid or malformed domain name input — likely returns a validation error
- Domain is using obscure/private nameservers not recognized by the provider detection heuristics — provider may be returned as unknown

## How this service works

DNS NS record lookup: the authoritative nameservers for a domain and the detected DNS hosting provider (Cloudflare, Route 53, Google Cloud DNS, Azure, NS1, GoDaddy, Namecheap...). Infrastructure discovery and migration checks. $0.01 per lookup.

## Output

Returns the list of authoritative nameserver hostnames (NS records) for the queried domain and a detected DNS hosting provider label (e.g. Cloudflare, Amazon Route 53, Google Cloud DNS, Azure DNS, NS1, GoDaddy, Namecheap).

## 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",
     "properties": {}
    }
   },
   "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/dns-ns-record-lookup-3f71aed7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
