Look Up DNS Records
Query DNS records for any domain to inspect A, AAAA, MX, CNAME, TXT, and NS configurations.
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.
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.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "dns-domain",
"skill": "lookup_dns",
"input": {
"domain": "google.com"
}
}' \
https://api.toolrouter.com/v1/tools/callPerform a WHOIS lookup for a domain. Returns registrar, creation date, expiry date, nameservers, and registration status. Connects directly to WHOIS servers.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "dns-domain",
"skill": "whois_lookup",
"input": {
"domain": "google.com"
}
}' \
https://api.toolrouter.com/v1/tools/callInspect the SSL/TLS certificate for a domain. Returns issuer, subject, validity dates, protocol version, and days until expiry. Connects via TLS to port 443.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "dns-domain",
"skill": "check_ssl",
"input": {
"domain": "github.com"
}
}' \
https://api.toolrouter.com/v1/tools/callCheck 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.
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/callclaude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"dns-domain","skill":"lookup_dns","input":{}}' \
https://api.toolrouter.com/v1/tools/callQuery DNS records for any domain to inspect A, AAAA, MX, CNAME, TXT, and NS configurations.
Verify whether recent DNS changes have propagated and the new records are live.
Search for available domain names that match your brand, project, or business idea.
Run comprehensive vulnerability scans against web applications to identify security weaknesses.
Research domain acquisition opportunities by searching availability, checking ownership, examining DNS, and reviewing domain history.
Prepare for website migration by crawling the current site, documenting SEO baselines, benchmarking performance, and recording DNS configuration.
Audit SSL certificates, DNS configuration, HTTP security headers, and domain registration for security gaps.
Enumerate subdomains, probe services, scan for takeover vulnerabilities, and capture visual evidence.
It can inspect common DNS record types in parallel, which makes it useful for quickly reviewing how a domain is configured.
Yes. SSL and TLS expiry and trust checks are part of the same tool, alongside DNS and WHOIS lookups.
Yes. Domain availability checks are included, including batch checks when you want to compare options quickly.
It is especially useful for DevOps, security work, and domain buying or validation.