Tools / DNS & Domain
DNS & Domain icon

DNS & Domain

DNS, WHOIS, SSL & domain checks

DNS records, WHOIS registration, SSL/TLS certificates, and domain availability in one tool. Parallel DNS lookups for all record types, SSL expiry and trust checks, and batch availability checking. Essential for DevOps, security, and domain acquisition.

4 skillsv0.02
DNS Lookup

Resolve DNS records for a domain. Returns A, AAAA, MX, TXT, CNAME, NS, CAA, and SOA records in parallel. Supports querying specific record types or all at once. Reports errors separately from empty results.

Returns: DNS records grouped by type with TTL and priority information where applicable
Parameters
domain *stringDomain name to resolve (e.g. "example.com")
record_typestringDNS record type to query. Use "ALL" to fetch all record types in parallel.
Example
Look up all DNS records for google.com
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "dns-domain",
  "skill": "lookup_dns",
  "input": {
    "domain": "google.com"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
WHOIS Lookup

Perform a WHOIS lookup for a domain. Returns registrar, creation date, expiry date, nameservers, and registration status. Connects directly to WHOIS servers.

Returns: Parsed WHOIS data including registrar, dates, nameservers, status, and raw response
Parameters
domain *stringDomain name to look up (e.g. "example.com")
Example
WHOIS lookup for google.com
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "dns-domain",
  "skill": "whois_lookup",
  "input": {
    "domain": "google.com"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Check SSL Certificate

Inspect the SSL/TLS certificate for a domain. Returns issuer, subject, validity dates, protocol version, and days until expiry. Connects via TLS to port 443.

Returns: SSL certificate details including trust status, hostname match, issuer, expiry, cipher suite, and fingerprint
Parameters
domain *stringDomain name to check SSL for (e.g. "example.com")
portnumberPort to connect to (default 443)
Example
Check SSL certificate for github.com
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "dns-domain",
  "skill": "check_ssl",
  "input": {
    "domain": "github.com"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Check Domain Availability

Check if a domain name is registered or available for purchase. Uses DNS resolution and WHOIS to determine registration status. Supports batch checking of multiple domains.

Returns: Availability status for each domain (available/registered)
Parameters
domains *arrayList of domain names to check (e.g. ["example.com", "example.io"])
Example
Check availability of several domains
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "dns-domain",
  "skill": "check_availability",
  "input": {
    "domains": [
      "coolstartup.com",
      "coolstartup.io",
      "coolstartup.dev"
    ]
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Loading reviews...
Loading activity...
v0.022026-03-22
  • Added subtitle, expanded description, and agent instructions
v0.012026-03-20
  • Initial release

Quick Start

MCP (Claude Code)
claude mcp add --transport stdio \
  --env TOOLROUTER_API_KEY=YOUR_API_KEY \
  toolrouter -- npx -y toolrouter-mcp
REST API
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{"tool":"dns-domain","skill":"lookup_dns","input":{}}' \
  https://api.toolrouter.com/v1/tools/call

Use Cases

Open Look Up DNS Records

Look Up DNS Records

Query DNS records for any domain to inspect A, AAAA, MX, CNAME, TXT, and NS configurations.

DNS & Domain icon
DNS & Domain
4 agent guides
Open Check DNS Propagation Status

Check DNS Propagation Status

Verify whether recent DNS changes have propagated and the new records are live.

DNS & Domain icon
DNS & Domain
4 agent guides
Open Find Available Domain Names

Find Available Domain Names

Search for available domain names that match your brand, project, or business idea.

Domain Search icon
Domain Search
4 agent guides
View all use cases for DNS & Domain

Workflows

Open Domain Acquisition Research

Domain Acquisition Research

Research domain acquisition opportunities by searching availability, checking ownership, examining DNS, and reviewing domain history.

Domain Search icon
Domain Search
Whois RDAP icon
Whois RDAP
DNS Domain icon
DNS Domain
Web Archive icon
Web Archive
4 steps4 tools
Open Website Migration Audit

Website Migration Audit

Prepare for website migration by crawling the current site, documenting SEO baselines, benchmarking performance, and recording DNS configuration.

Site Crawler icon
Site Crawler
SEO Analysis icon
SEO Analysis
Lighthouse Audit icon
Lighthouse Audit
DNS Domain icon
DNS Domain
4 steps4 tools
Open SSL and DNS Audit

SSL and DNS Audit

Audit SSL certificates, DNS configuration, HTTP security headers, and domain registration for security gaps.

DNS Domain icon
DNS Domain
Security HTTPx icon
Security HTTPx
Whois RDAP icon
Whois RDAP
IP Geolocation icon
IP Geolocation
4 steps4 tools
Open Subdomain Security Scan

Subdomain Security Scan

Enumerate subdomains, probe services, scan for takeover vulnerabilities, and capture visual evidence.

DNS Domain icon
DNS Domain
Security HTTPx icon
Security HTTPx
Security Nuclei icon
Security Nuclei
Web Screenshot icon
Web Screenshot
4 steps4 tools
View all 14workflows →

Frequently Asked Questions

What DNS records can it check?

It can inspect common DNS record types in parallel, which makes it useful for quickly reviewing how a domain is configured.

Does it also check SSL certificates?

Yes. SSL and TLS expiry and trust checks are part of the same tool, alongside DNS and WHOIS lookups.

Can it tell me if a domain is available?

Yes. Domain availability checks are included, including batch checks when you want to compare options quickly.

Who is this most useful for?

It is especially useful for DevOps, security work, and domain buying or validation.