Nameserver Checker — NS Audit, Provider & Redundancy Risk avatar

Nameserver Checker — NS Audit, Provider & Redundancy Risk

Pricing

$10.00 / 1,000 domain checkeds

Go to Apify Store
Nameserver Checker — NS Audit, Provider & Redundancy Risk

Nameserver Checker — NS Audit, Provider & Redundancy Risk

Input: a list of domains. Output: one JSON record per domain listing authoritative NS records, each nameserver resolved to IPs, a provider count, and flags for single-provider and single-nameserver risk. Cheap pay-per-result pricing: $0.01 per domain checked.

Pricing

$10.00 / 1,000 domain checkeds

Rating

0.0

(0)

Developer

Anthony Snider

Anthony Snider

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Nameserver Checker

Audit any domain's authoritative nameservers and catch single-point-of-failure DNS risk before it bites you.

Live on the Apify Store — run it instantly or call it as an agent tool via Apify MCP.

What you get

  • Authoritative nameservers (dns.resolveNs), deduped and sorted
  • Each nameserver resolved to its A/AAAA IPs
  • Provider count, by grouping nameservers on their registrable base domain
  • Redundancy verdict (redundancyOk) plus a plain-English issues list flagging:
    • fewer than 2 nameservers
    • all nameservers on a single provider
    • all nameserver IPs in the same /24 subnet (low network redundancy)
  • Single domain or bulk; capped per run with maxDomains

Input

{
"domain": "github.com",
"domains": ["google.com", "cloudflare.com"],
"maxDomains": 50
}

Output

{
"domain": "google.com",
"nameservers": [
{ "ns": "ns1.google.com", "ips": ["216.239.32.10"] },
{ "ns": "ns2.google.com", "ips": ["216.239.34.10"] },
{ "ns": "ns3.google.com", "ips": ["216.239.36.10"] },
{ "ns": "ns4.google.com", "ips": ["216.239.38.10"] }
],
"count": 4,
"providerCount": 1,
"providers": ["google.com"],
"redundancyOk": false,
"issues": ["All nameservers on a single provider."],
"checkedAt": "2026-06-24T00:00:00.000Z"
}