Moz Domain Authority Checker
Pricing
$2.30 / 1,000 domaininfos
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
Pricing
$2.30 / 1,000 domaininfos
Rating
0.0
(0)
Developer

Data Collector
Actor stats
4
Bookmarked
41
Total users
14
Monthly active users
3 months ago
Last modified
Categories
Share
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
- Go to the actor page on Apify Store
- Enter your domains in the input
- Configure output format and retry settings
- Click "Run"
- 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 dependenciesnpm install# Run locally with Apify CLIapify run -p# Or run directlynpm 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