VOOZH about

URL: https://apify.com/zhorex/domain-authority-checker

⇱ Domain Authority Checker β€” Bulk DNS, SSL, WHOIS & SEO Score Β· Apify


Pricing

from $5.00 / 1,000 domain analyzeds

Go to Apify Store

Domain Authority & SEO Checker

Bulk domain analysis: Domain Score, DNS records, SSL info, WHOIS age, HTTP status, load time, meta tags, technology detection, robots.txt, sitemap.xml. Fast, no browser needed.

Pricing

from $5.00 / 1,000 domain analyzeds

Rating

0.0

(0)

Developer

πŸ‘ Sami

Sami

Maintained by Community

Actor stats

0

Bookmarked

15

Total users

4

Monthly active users

a month ago

Last modified

Share

Analyze domains in bulk and get a comprehensive SEO health report. No browser needed β€” pure Python, fast and efficient.

How to check domain authority in 3 easy steps

  1. Go to the Domain Authority Checker page on Apify and click "Try for free".
  2. Configure your input β€” enter a list of domains (or upload a CSV), set concurrency and timeout, and choose which checks to include (SSL, DNS, meta tags, tech detection).
  3. Click "Run", wait for the results, and download your SEO report in JSON, CSV, or Excel format.

No coding required. Works with Apify's free plan.

What it does

For each domain, the Actor checks:

  • Domain Score (0-100) β€” proprietary score based on all collected metrics
  • HTTP Status β€” reachability and response codes
  • Page Load Time β€” response time in milliseconds
  • SSL Certificate β€” validity, issuer, expiration date
  • DNS Records β€” A, AAAA, MX, NS, TXT, CNAME
  • Domain Age β€” registration date via WHOIS
  • Meta Tags β€” title, description, Open Graph tags
  • Technology Detection β€” server software, frameworks, CDN
  • Robots.txt β€” existence check
  • Sitemap.xml β€” existence and URL count
  • Social Links β€” social media profiles found on homepage

Moz Domain Authority API alternative

Moz DA, Ahrefs DR, and similar SEO authority tools charge $99+/month for API access with strict rate limits. This Actor is the best free Domain Authority API alternative in 2026 β€” it calculates a comprehensive Domain Score (0-100) based on HTTP health, SSL, domain age, DNS, sitemap, meta tags, and more. Check thousands of domains in bulk at $0.003 per domain with no monthly subscription required.

Input

FieldTypeDefaultDescription
domainsstring[][]List of domains to check (no protocol needed)
csvUrlstringnullURL to a CSV file with domains
maxConcurrencyinteger10Parallel checks (1-50)
timeoutinteger15HTTP timeout in seconds (5-60)
includeMetaTagsbooleantrueExtract meta tags
includeDnsbooleantrueLookup DNS records
includeSslbooleantrueCheck SSL certificates
includeTechDetectionbooleantrueDetect technologies

Example input

{
"domains":["example.com","google.com","github.com"],
"maxConcurrency":10,
"timeout":15
}

Output

Each domain produces a result object:

{
"domain":"example.com",
"domainScore":72,
"httpStatus":200,
"loadTimeMs":450,
"ssl":{
"valid":true,
"issuer":"Let's Encrypt",
"expiresAt":"2026-09-15"
},
"dns":{
"aRecords":["93.184.216.34"],
"mxRecords":["mail.example.com"],
"nsRecords":["ns1.example.com"]
},
"domainAge":{
"createdAt":"1995-08-14",
"ageYears":31
},
"meta":{
"title":"Example Domain",
"description":"This domain is for use in illustrative examples..."
},
"technology":{
"server":"nginx",
"poweredBy":null,
"cdn":"Cloudflare",
"frameworks":[]
},
"robotsTxt":true,
"sitemapXml":true,
"sitemapUrls":1250,
"socialLinks":["https://twitter.com/example"],
"checkedAt":"2026-04-07T12:00:00+00:00"
}

Domain Score

The Domain Score (0-100) is calculated from:

FactorMax Points
HTTP reachable & fast20
Valid SSL certificate15
Domain age15
DNS health (MX, NS, A)10
Sitemap exists + URL count10
Meta tags quality10
Robots.txt exists5
Technology detected5
Social media presence5

Pricing

This Actor uses the pay-per-event model:

  • $0.003 per domain checked ($3 per 1,000 domains)

Use cases

  • SEO audits β€” bulk-check client domains
  • Competitor analysis β€” compare domain health metrics
  • Lead qualification β€” score prospect websites
  • Domain prospecting β€” evaluate domains before purchase
  • Website monitoring β€” periodic health checks

Use with Python, JavaScript, or no code

You can call this Actor programmatically from any language using the Apify API, or just use the web UI with no code at all.

Python example:

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("zhorex/domain-authority-checker").call(run_input={
"domains":["example.com","google.com","github.com"],
"maxConcurrency":10,
"timeout":15,
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item["domain"], item["domainScore"])

JavaScript example:

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'YOUR_API_TOKEN'});
const run =await client.actor('zhorex/domain-authority-checker').call({
domains:['example.com','google.com','github.com'],
maxConcurrency:10,
timeout:15,
});
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item)=>{
console.log(item.domain, item.domainScore);
});

FAQ

How much does it cost to check domain authority? $0.003 per domain ($3 per 1,000 domains). Apify's free plan includes $5 of monthly usage, so you can check around 1,600 domains for free every month.

Can I use this domain authority checker in Python? Yes. Install the apify-client package (pip install apify-client) and call the Actor with a few lines of code. See the Python example above.

Is checking domain authority legal? Yes. This Actor only accesses publicly available information β€” HTTP responses, DNS records, SSL certificates, WHOIS data, and publicly served HTML. It does not bypass any authentication or access private data.

What is the best domain authority checker in 2026? This Actor (Domain Authority & SEO Checker) is a comprehensive and affordable alternative to Moz DA, Ahrefs DR, and similar paid tools. It checks HTTP health, SSL, domain age, DNS, sitemaps, meta tags, and technology detection β€” all in a single run at $0.003 per domain with no monthly subscription.

How is the Domain Score different from Moz DA? The Domain Score (0-100) is calculated from real-time technical health checks including HTTP reachability, SSL validity, domain age, DNS health, sitemap presence, meta tag quality, and social media presence. Unlike Moz DA, which relies on backlink data, this score focuses on the technical SEO health of the domain.

Integrations & data export

This Actor integrates with the full Apify ecosystem and popular automation platforms:

  • Google Sheets β€” export domain authority scores directly to a spreadsheet
  • Zapier / Make / n8n β€” trigger workflows when bulk domain checks complete
  • REST API β€” call the Actor from any application using the Apify API
  • Webhooks β€” receive notifications when a scraping run finishes
  • Amazon S3 / Google Cloud Storage β€” store datasets in your own cloud bucket
  • JSON / CSV / Excel β€” download results in the format you need

More tools by Zhorex

SEO & website analysis:

  • Domain Authority Checker (this Actor) β€” Bulk domain authority and SEO health checker
  • Tech Stack Detector β€” Detect technologies used by any website

B2B reviews & competitive intelligence:

Social media & content scrapers:

Data validation tools:

DeFi & financial intelligence:

Support

Having issues? Open an issue on the Actor page or contact us directly. We actively maintain all our tools and respond to issues quickly.


Found this Actor useful? Please leave a star rating β€” it helps other users discover this tool.

You might also like

Transcribe Video to Text & Audio to Text β€” 99+ Languages

sian.agency/INCREDIBLY-FAST-audio-transcriber

Transcribe video to text and audio to text in bulk on Apify. 99+ languages, word-level timestamps, speaker diarization, SRT/VTT export. Try free.

92

5.0

Moz Domain Authority Checker

jdtpnjtp/moz-domain-authority-checker

The MOZ Domain Authority API provides comprehensive domain analysis and SEO metrics through a simple REST interface. Analyze any domain to retrieve critical SEO indicators including Domain Authority (DA), Page Authority

158

1.6

SEMrush Free Website Stats Scraper

crawlerbros/semrush-scraper

Scrape SEMrush public website overview (Authority Score, Visits, Referring Domains, Backlinks) from semrush.com/website/. HTTP-only, no login, no proxy.

42

Ahrefs Free Website Stats Scraper

crawlerbros/ahrefs-scraper

Scrape Ahrefs public website stats (Domain Rating, backlinks, global rank, organic traffic) from ahrefs.com/websites/. HTTP-only, no login, no proxy.

49

Ahrefs All-in-One SEO Scraper - DR, Backlinks, Keywords

pro100chok/ahrefs-seo-tools

Extract all SEO data from Ahrefs in one Actor: Domain Rating, backlinks, keyword research (20 engines incl. ChatGPT/Gemini/Perplexity), SERP analysis, traffic estimates, AI visibility, keyword rank checker, top 1000 websites ranking, competitors & more. No subscription needed. Bulk URL support.

Website Traffic Checker & SEO Competitor Analysis Tool

santhej/website-traffic-intel

Estimate any site's monthly organic traffic, top ranking keywords (volume + CPC), organic competitors and keyword overlap. No-subscription Ahrefs / SEMrush alternative.

πŸ‘ User avatar

Santhej Kallada

7

5.0

Ahrefs Free Tools Scraper

parseforge/ahrefs-tools-scraper

Pull SEO metrics from Ahrefs free tools: Domain Rating, URL Rating, backlinks, referring domains, dofollow backlinks, organic traffic, and organic keywords. Switch between domain and keyword tools. Export to JSON, CSV, or Excel for SEO research, competitor benchmarking, and content audits.

Backlinks Checker

s-r/backlinks-checker

Get the full backlink profile for any domain β€” domain score, referring-domain count, total-link count, and per-link records (origin URL, target URL, anchor text, follow/nofollow, dates).

DataForSEO Backlinks Analyzer

alizarin_refrigerator-owner/dataforseo-backlinks

Provides comprehensive backlink analysis powered by the DataForSEO Backlinks API. Analyze any domain's link profile, discover referring domains, find link building opportunities& monitor competitor backlinks. Backlinks, Referring Domains Anchor Text, DA, New/Lost Links, Competitors, Toxic Links