Moz Domain Authority Checker avatar
Moz Domain Authority Checker

Pricing

$2.30 / 1,000 domaininfos

Go to Apify Store
Moz Domain Authority Checker

Moz Domain Authority Checker

Developed by

Data Collector

Data Collector

Maintained by Community

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

0.0 (0)

Pricing

$2.30 / 1,000 domaininfos

0

1

1

Last modified

6 hours ago

Apify Actor for checking domain authority metrics from Moz.com. Extract Domain Authority (DA), spam scores, linking domains, and other SEO metrics with advanced retry logic and multi-format export.

⚠️ IMPORTANT: Limited to 3 domains per run to minimize costs

Features

  • 🔍 Domain Authority Analysis - Get DA, PA, spam score, and linking metrics
  • 🔄 Smart Retry Logic - Up to 20 retry attempts with exponential backoff
  • 🌐 Proxy Support - Automatic proxy rotation for better success rates
  • 📊 Multiple Export Formats - JSON, CSV, XML, and HTML reports
  • Concurrent Processing - Process multiple domains simultaneously
  • 🛡️ Cloudflare Bypass - Advanced techniques to handle anti-bot protection

Input

{
"domains": ["example.com", "google.com"],
"outputFormat": "json",
"maxRetries": 10,
"useProxy": false,
"proxyType": "RESIDENTIAL"
}

Input Parameters

  • domains (required) - Array of domains to check (MAX 5 domains per run)
  • outputFormat - Output format: json, csv, xml, or html (default: json)
  • maxRetries - Maximum retry attempts per domain (1-10, default: 10)
  • useProxy - Enable proxy rotation (default: false, costs extra!)
  • proxyType - Type of proxy: DATACENTER or RESIDENTIAL (default: RESIDENTIAL)

Output

The actor provides detailed metrics for each domain:

{
"success": true,
"domain": "example.com",
"data": {
"domain_authority": 85,
"spam_score": 1,
"linking_root_domains": 150000,
"ranking_keywords": 25000,
"top_pages_by_links": [...],
"top_linking_domains": [...]
},
"checkTime": "2024-01-18T10:30:00Z",
"processingTimeMs": 3500,
"attempt": 1
}

Usage

Via Apify Console

  1. Go to the actor page on Apify Store
  2. Enter your domains in the input
  3. Configure output format and retry settings
  4. Click "Run"
  5. Download results in your preferred format

Via API

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({
token: 'YOUR_API_TOKEN',
});
const input = {
domains: ['example.com', 'google.com'],
outputFormat: 'json',
maxRetries: 10,
useProxy: false
};
const run = await client.actor('jdtpnjtp/moz-domain-authority-checker').call(input);
console.log('Results:', run.output.body);

Via Apify SDK

import { Actor } from 'apify';
await Actor.metamorph('jdtpnjtp/moz-domain-authority-checker', {
domains: ['example.com'],
outputFormat: 'csv'
});

Local Development

# Install dependencies
npm install
# Run locally with Apify CLI
apify run -p
# Or run directly
npm start

Pricing

The actor uses RESIDENTIAL proxies for better success rates. Typical usage:

  • ~1-2 compute units per domain
  • Additional proxy costs may apply

Support

For issues or feature requests, please create an issue or contact support.

License

MIT