Moz Scraper [Only $5💰/1K] | Domain Authority | Backlinks avatar

Moz Scraper [Only $5💰/1K] | Domain Authority | Backlinks

Pricing

from $4.97 / 1,000 results

Go to Apify Store
Moz Scraper [Only $5💰/1K] | Domain Authority | Backlinks

Moz Scraper [Only $5💰/1K] | Domain Authority | Backlinks

Check Moz Domain Authority, Spam Score, backlinks and ranking keywords for any list of domains - no Moz account needed. Bulk DA checks for link building and SEO competitor analysis.

Pricing

from $4.97 / 1,000 results

Rating

0.0

(0)

Developer

Ahmed Jasarevic

Ahmed Jasarevic

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

2

Monthly active users

2 days ago

Last modified

Categories

Share

Moz Scraper: Domain Authority Checker, Spam Score & Backlink Data

Scrape Moz's free domain-analysis SEO metrics for any list of domains — no Moz account, no Moz Pro subscription, no login, and no browser. Feed it domains or URLs and get back Domain Authority (DA), Spam Score, linking root domains, ranking keywords, top linking domains, top pages, and a 60-day link-acquisition history — one clean structured record per domain, ready for JSON, CSV or Excel export.

  • SEO competitor analysis — compare Domain Authority, backlinks and ranking keywords across your competitive set in one table.
  • Link building prospecting — find high-DA linking domains and top pages to target for guest posts and digital PR.
  • Bulk DA qualification — check 1,000+ domains at once and filter for DA >= 40 to build outreach lists.
  • Spam score screening — flag low-quality domains before you buy links, rent mentions or partner with sites.
  • Domain authority tracking — schedule weekly runs to watch DA, spam score and link-history trends for your own domains.

Bulk Domain Authority Check — No Moz Account, No Browser

This is the budget/Cheerio edition of the classic Moz scrapers: it reads the exact same public Moz reports but with plain HTTP + Cheerio instead of a headless browser, so it runs on tiny memory (256 MB) and a fraction of the compute of browser-based alternatives. Bulk DA qualification at 1,000s of domains for pennies.

  • Cheap by design. Pure HTTP + CheerioCrawler — no browser instances, low memory, low compute.
  • Bulk by design. Feed one domain or thousands; each is de-duplicated and processed in parallel.
  • You never pay for empty lookups. Domains that return no usable data are skipped and never charged.
  • Clean, export-ready output. Structured JSON, CSV, or Excel — ready for dashboards, BI, and prospecting sheets.
  • Handles the hard part. Cloudflare challenges and Moz's per-IP free limit are handled via configurable proxy rotation — enable residential proxies for big lists (recommended default).

What it returns

For every domain you submit, this Actor pulls the public Moz domain-analysis report:

  • Domain Authority (DA) — Moz's 0–100 score predicting ranking strength.
  • Spam Score — the percentage risk signal.
  • Linking Root Domains — count of unique referring domains.
  • Ranking Keywords — total keywords the domain ranks for.
  • Top Linking Domains — the strongest referring domains, each with its own DA.
  • Top Pages — the domain's strongest pages, each with a Page Authority (PA).
  • 60-Day Link History — discovered vs. lost linking domains over the last ~60 days.

Moz API Alternative — How to Get Moz Data Without an API Key

Moz's official API requires a Moz Pro subscription and an API key. This actor reads Moz's free public domain-analysis tool instead — no account, no key, no subscription — which makes it a practical Moz API alternative for bulk DA and backlink checks without the Moz Pro paywall.

Fast mode (bulk DA + spam-score qualification)

Turn on fastMode for pure bulk DA + spam-score qualification: it returns just the four headline metrics (Domain Authority, spam score, linking root domains, ranking keywords) with a tiny regex-based parse — no full DOM build, no tables, no link-history/chart extraction. Every row is marked fast: true. The values are still read from the live Moz report. Leave fastMode off for the complete report.

How to Use Moz Scraper

  1. Open the Actor in Apify Console (or call it via the API).
  2. In the Input tab, paste your domains/URLs into domains.
  3. Enable Proxy configuration (RESIDENTIAL group is the recommended default) — Moz only allows ~3 free reports per IP per day, so a proxy pool makes bulk runs possible.
  4. Click Start and download the dataset as JSON, CSV, HTML, or Excel.

Example call (API / MCP)

{
"domains": ["apify.com", "stripe.com"],
"fastMode": false,
"includeTopPages": true,
"includeTopLinkingDomains": true,
"includeLinkHistory": true,
"maxItems": 1000,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

For a fast DA-only qualification run:

{
"domains": ["apify.com", "stripe.com"],
"fastMode": true
}

Supported inputs

InputExampleNotes
Bare domainapify.comSimplest form
Full URLhttps://www.stripe.com/pricingScheme + path are stripped to the host
Subdomainblog.example.comKept as its own target
Bulk list["a.com","b.com", …]De-duplicated; looked up once per unique host

Input Configuration

FieldTypeRequiredDefaultDescription
domainsarrayyesDomains or URLs to analyze.
fastModebooleannofalseFast bulk mode — headline metrics only (DA, spam, linking root domains, ranking keywords); rows marked fast: true.
includeTopLinkingDomainsbooleannotrueInclude the top linking domains list (with per-domain DA).
includeTopPagesbooleannotrueInclude the top pages list (with per-page PA).
includeLinkHistorybooleannotrueInclude the 60-day discovered/lost link history.
maxItemsintegerno1000Cap on domains processed (and billable results).
maxConcurrencyintegerno3Parallel domain lookups (keep low 1–5 for residential rotation).
requestTimeoutMsintegerno60000Per-request timeout before a retry.
maxRequestRetriesintegerno3Retries per domain on challenge/limit before skipping (never billed).
proxyConfigurationobjectnoresidentialProxy pool — enable for any list bigger than a few domains.
{
"input": "apify.com",
"domain": "apify.com",
"domainAuthority": 60,
"linkingRootDomains": 11500,
"rankingKeywords": 32700,
"spamScore": 3,
"topLinkingDomains": [
{ "domain": "youtube.com", "da": 100 },
{ "domain": "wordpress.org", "da": 98 }
],
"topPages": [
{ "url": "apify.com/", "pa": 58 },
{ "url": "www.apify.com/", "pa": 52 }
],
"linkHistory": [
{ "date": "07/11", "discovered": 31, "lost": -7 },
{ "date": "07/12", "discovered": 22, "lost": -10 }
],
"checkedAt": "2026-09-12T21:16:27.188Z",
"source": "moz"
}

Data table

FieldDescription
inputThe supplied domain, normalized to its host.
domainThe host as shown on the Moz report.
domainAuthorityMoz Domain Authority, 0–100.
linkingRootDomainsCount of unique linking root domains.
rankingKeywordsCount of ranking keywords.
spamScoreMoz Spam Score (percentage risk signal).
topLinkingDomains[]Strongest referring domains, each with da.
topPages[]Strongest pages, each with pa.
linkHistory[]~60-day discovered / lost linking-domain trend.
checkedAtISO timestamp of the lookup.
sourceData source marker (always moz).
fasttrue when the row was produced in fast mode (headline metrics only).

Cost Estimation: How Much Does It Cost to Scrape Moz Domain Metrics?

Pure HTTP + Cheerio — no browser rendering, no per-page GPU/CPU overhead. Each report is a single lightweight GET (~50–100 KB), so memory stays at 256 MB and compute per 1,000 domains is tiny. On top of platform usage you only pay for what the Actor consumes:

  • ~3 free Moz queries per IP per day — Moz's own limit, not ours. With Apify RESIDENTIAL proxies the pool provides a fresh IP per session, so thousands of domains per run are achievable.
  • Direct egress (no proxy) — free, but you'll hit Moz's IP limit after ~3 domains per run.
  • Empty lookups are never charged: domains with no Moz data are skipped before billing.

To keep runs affordable, set maxItems to what you actually need and use residential proxies only for real bulk work.

Tips & Advanced Options

  • Proxy is the unlock. The default input enables RESIDENTIAL — keep it for anything beyond a handful of domains.
  • Low concurrency for residential (1–5) rotates IPs cleanly; raise concurrency if you run on your own proxy pool.
  • Trim output by disabling includeTopPages, includeTopLinkingDomains, or includeLinkHistory to keep rows lean.
  • Fast mode for bulk DA qualification. For thousands of domains where all you need is DA + spam score, flip fastMode on — leaner rows, lighter parsing, same live data.
  • Cap cost with maxItems.

FAQ

Do I need a Moz account or API key? No. This Actor reads Moz's public free domain-analysis tool — no account, key, or subscription. That's what makes it a workable Moz API alternative.

Why do I need proxies? Moz allows ~3 free reports per IP per day and Cloudflare fronts the page ready to hand out 403s to datacenter IPs. The Actor already sends a fully consistent browser fingerprint (rotating Chrome User-Agent + matching Sec-CH-UA/Sec-Fetch-* headers + Referer) and rotates sessions, which clears many blocks — but for reliable bulk runs, fresh residential IPs per request are the safe path.

What is a good Domain Authority score? DA is a 0–100 relative ranking score — 40+ is generally considered strong, 60+ very strong. Use fastMode to bulk-qualify prospects against your own threshold (e.g. DA >= 40).

How to check Domain Authority for free at scale? Run this actor with fastMode: true and a residential proxy pool — it returns live DA, spam score, linking root domains and ranking keywords for thousands of domains at pennies per thousand.

Moz vs Ahrefs Domain Rating — which should I use? Both are competitive link-based metrics; DA is widely quoted in outreach and guest-posting circles, while Ahrefs DR is common in SEO tooling circles. Pair the Ahrefs Scraper with this actor to cover both metrics.

What happens for a domain Moz has no data on? The domain is skipped and never billed.

Is this legal? This Actor collects publicly available information from Moz's free domain-analysis tool. It does not log in, bypass authentication, or access account-gated Moz data. "Moz", "Domain Authority", "Page Authority", and "Spam Score" are trademarks of Moz, Inc.; this Actor is independent and not affiliated with, endorsed by, or sponsored by Moz. Metrics are Moz's estimates. Use the data in compliance with Moz's terms and all applicable laws.

Compatibility note: Moz's free tool is a live product and may change its layout over time. If reports stop parsing, open an issue on the Actor's Issues tab and it'll be fixed quickly.

Need help? Open an issue on the Actor's Issues tab, or reach out for a custom scraper built to your needs.

SEO Keywords

domain authority checker, bulk domain authority check, moz da checker, moz api alternative, moz api free alternative, backlink analysis tool, spam score checker, linking root domains check, seo competitor analysis, link building prospecting, domain authority tracking, page authority checker, seo audit tool, outreach list generator, da 40+ domains list, moz domain metrics bulk, competitor backlink analysis, link profile analysis, seo lead generation, domain rating alternative, check da, free da checker

For AI Agents & LLM Apps

One dataset record per domain: Moz Domain Authority, Spam Score, linking root domains, ranking keywords, top linking domains (with DA), top pages (with PA) and 60-day link history — wired for the Apify MCP server and the Apify API.

Minimal working input (fast DA check):

{
"domains": ["apify.com", "stripe.com"],
"fastMode": true
}

Variant — full report:

{
"domains": ["apify.com"],
"fastMode": false,
"includeTopLinkingDomains": true,
"includeTopPages": true,
"includeLinkHistory": true
}

Output field list: input, domain, domainAuthority, linkingRootDomains, rankingKeywords, spamScore, topLinkingDomains[{domain,da}], topPages[{url,pa}], linkHistory[{date,discovered,lost}], checkedAt, source, fast.

Behaviors an agent should know:

  • domains is the only required field; each unique host is looked up once (de-duplicated).
  • In fastMode, topLinkingDomains, topPages and linkHistory are always omitted and rows are flagged fast: true.
  • Domains with no Moz data are skipped and not billed — do not treat missing rows as errors.
  • Without a proxy pool you'll typically get ~3 free reports per IP per day before Moz limits; enable RESIDENTIAL proxies for anything beyond a few domains.
  • maxItems caps billable results — set it to your actual list size.
  • Metrics are Moz's estimates, not guarantees.

Billing model: pay-per-event (compute + proxy traffic actually consumed); pricing from $5 per 1,000 results.

This actor is independent and is not affiliated with, endorsed by, or sponsored by Moz, Inc. It collects publicly available information from Moz's free domain-analysis tool; it does not log in, bypass authentication, or access account-gated Moz data. "Moz", "Domain Authority", "Page Authority", and "Spam Score" are trademarks of Moz, Inc., and the metrics returned are Moz's estimates. Users are responsible for complying with Moz's terms and all applicable laws in how they collect and use the data.