DNS Lookup avatar

DNS Lookup

Pricing

from $3.50 / 1,000 results

Go to Apify Store
DNS Lookup

DNS Lookup

DNS records, SSL certificates, and HTTP health checks for any domain — no external APIs required. Built for SEO agencies, DevOps teams, and developers who need fast, reliable domain intelligence.

Pricing

from $3.50 / 1,000 results

Rating

0.0

(0)

Developer

Alessandro Amato

Alessandro Amato

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

SiteIntel Domain Intelligence API

DNS records, SSL certificates, and HTTP health checks for any domain — no external APIs required.

Instant domain intelligence using only built-in Node.js modules. Zero API keys, zero rate limits, zero dependencies. Built for SEO agencies, DevOps teams, and developers who need fast, reliable domain intelligence.

Features

  • 🌐 DNS Records — A, AAAA, MX, TXT, NS, CNAME, SOA lookups
  • 🔒 SSL Certificate — Expiry date, issuer, subject, days remaining, SAN
  • 🩺 HTTP Health — Status code, response time, redirect chain, security headers
  • 📊 Domain Intel — Combined DNS + SSL + HTTP report with summary
  • 🎯 IP Resolve — Hostname to IP (v4/v6)
  • 🔄 Reverse DNS — IP to hostname

Actions

ActionInputDescription
dnsRecordsdomain, recordsDNS record lookup
sslCertificatedomainSSL certificate inspection
httpHealthdomain, followRedirectsHTTP status and health check
domainInteldomain, records, followRedirectsCombined full report
ipResolvedomainResolve hostname to IPs
reverseDnsipReverse lookup IP to hostname

Example Input

{
"action": "domainIntel",
"domain": "apify.com"
}

Example Output

{
"success": true,
"action": "domainIntel",
"timestamp": "2026-05-01T12:00:00Z",
"data": {
"domain": "apify.com",
"dns": { "A": { "found": true, "records": ["3.165.239.90"], "count": 1 } },
"ssl": {
"found": true,
"subject": { "commonName": "*.apify.com" },
"issuer": { "commonName": "Amazon RSA 2048 M02" },
"daysRemaining": 121,
"isExpired": false
},
"http": {
"found": true,
"statusCode": 200,
"isUp": true,
"responseTimeMs": 20
},
"summary": {
"dnsResolved": true,
"hasSSL": true,
"sslValid": true,
"websiteUp": true,
"gdprScore": { "value": 9, "max": 10, "rating": "strong" }
}
}
}

Pricing

  • Pay Per Event
  • apify-actor-start: $0.0005
  • result: $0.0005
  • ~$1.00 per 1,000 requests

Notes

  • Uses only Node.js built-in modules (dns, tls, https).
  • No external API keys or rate limits.
  • Each run takes <100ms — extremely low CU cost.