---
title: "Ahrefs Domain Rating report | SEO Skill"
description: "Retrieve one attributed Ahrefs Domain Rating observation for a domain or URL, with its target mode, license, cache state, coverage and limits kept visible."
canonical: "https://seoskill.dev/docs/reports/domain-rating"
language: "en"
---

# Ahrefs Domain Rating report

Check the broad backlink-profile estimate Ahrefs returns for one domain or URL. Use it as supporting context, then inspect current results and URL-level evidence before judging a keyword or page.

## Install and run the report

Install the CLI once, then run `seo start` to connect your site and Google data. After setup you can run this report yourself or ask your agent to run it.

Install the SEO CLI globally.

```
npm i -g seo
```

Run setup after installation.

```
seo start
```

Run ahrefs domain rating through the report catalog.

```
seo reports run domain-rating --params '{"target":"example.com","targetMode":"domain","provider":"ahrefs"}' --json
```

## What you get from this report

Retrieve one attributed Ahrefs backlink-profile estimate before deciding whether deeper paid link research is useful.

Best for

You need one provider-native backlink-profile metric as supporting evidence.

Needs

Domain or absolute URL

You get

One attributed Domain Rating observation on the Ahrefs 0 to 100 logarithmic scale.

Use next

Review referring link evidence

## What you need before you run it

This report uses one Ahrefs Domain Rating observation on its 0 to 100 logarithmic scale. The exact domain or URL mode, observation time, cache state, coverage and provider warnings. The provider license, required Domain Rating by Ahrefs attribution and attribution URL.

### Domain or absolute URL

Defines the single target sent to the free Ahrefs Domain Rating endpoint.

### Connected Ahrefs API v3 key

Authenticates the request without placing the key in report input, output or cache data.

## How the report finds the opportunity

The report uses existing search and page evidence to build a limited review list. An opportunity is a reason to inspect a page, not a promise of more traffic.

01

Normalizes the target and keeps domain and URL modes explicit.

02

Validates the provider response while preserving a missing value, license, attribution, observation time, coverage, cache state and warnings.

03

Returns the Ahrefs metric without converting it into a ranking factor, traffic estimate, keyword-difficulty score or feasibility verdict.

## Check the evidence behind each opportunity

Start with the query, page and date range behind each suggestion. Thin or partial evidence belongs in the review pile, not the implementation queue.

| Read first | Why it matters |
| --- | --- |
| Result | One attributed Domain Rating observation on the Ahrefs 0 to 100 logarithmic scale. |
| More detail | The exact target, mode, provider license, attribution link, cache evidence, coverage and interpretation limits. |
| Read it with | Use the value as broad backlink-profile context. Compare current results, page relevance and URL-level link evidence before making a competitive decision. |

## What the result cannot prove

Domain Rating is an Ahrefs estimate. It is not a Google metric or ranking factor. A lower value does not prove that a page or keyword is easy to outrank. Missing Domain Rating is not zero.

Use the value as broad backlink-profile context. Compare current results, page relevance and URL-level link evidence before making a competitive decision. Read the required attribution and license beside the value when displaying or reusing it. Run domain overview when the question concerns estimated search footprint rather than backlink strength.

## Use a different report for these jobs

You want a Google ranking factor, traffic estimate, keyword-difficulty score, or easy-to-outrank verdict. You need current result positions, page relevance, or complete backlink evidence.

[

### You need actual referring URLs, target pages or provider backlink totals.

Run link evidence with an Ahrefs target and a bounded row limit. Keep provider summary counts separate from the retained representative links.

Backlink evidence report

](https://seoskill.dev/docs/reports/link-evidence)[

### You want to judge whether a result may be competitive for one keyword.

Inspect the current result page, page relevance and URL-level evidence. Domain Rating alone cannot establish ranking feasibility.

Live SERP results report

](https://seoskill.dev/docs/reports/serp-results)

## Use the report with an agent or in code

The command above is enough for most work. These options let an agent, script or application run the same report with explicit input and structured output.

### CLI

Use the report catalog when an agent, script or CI job needs predictable JSON instead of the normal terminal output. Check the current input first, then run the report with the validated parameters.

Check the current input before the agent or script runs the report.

```
seo reports describe domain-rating --json
```

Once the input is valid, run the report through the report catalog.

```
seo reports run domain-rating --params '{"target":"example.com","targetMode":"domain","provider":"ahrefs"}' --json
```

### MCP

An MCP agent follows the same two-step flow. It inspects the current schema, fills the required fields and only then runs the report.

Ask the MCP server for the current report input.

```
{
  "id": "domain-rating"
}
```

Run the report after the agent has checked and filled the input.

```
{
  "id": "domain-rating",
  "params": {
    "target": "example.com",
    "targetMode": "domain",
    "provider": "ahrefs"
  }
}
```

### TypeScript

Install the package in a Node 22 project when your application needs to run the report directly. The result includes the same evidence, warnings and limits returned through the CLI and MCP server.

Add the SEO package to your project.

```
npm install seo
```

Run the report from your TypeScript application.

```
import { executeReport } from 'seo/mcp'

const result = await executeReport(
  'domain-rating',
  {
  "target": "example.com",
  "targetMode": "domain",
  "provider": "ahrefs"
},
)

console.log(result)
```

## What to do next

Use the observation to decide whether URL-level backlink evidence deserves a closer look. Compare current results, page relevance and first-party performance before making any claim about ranking difficulty.

1.  01Run link evidence for bounded referring-link rows and provider summary counts.
2.  02Run SERP results for a decision-critical keyword.
3.  03Run domain overview when the question concerns estimated search footprint rather than backlink strength.

## Related reports

[

Normalize bounded referring URLs from Ahrefs, DataForSEO, Bing Webmaster or a local export without downloading a web-scale index.

Backlink evidence report

](https://seoskill.dev/docs/reports/link-evidence)[

Inspect one bounded search snapshot with exact retained organic ranks, market context, result features, provider coverage, cache status, and request cost.

Live SERP results report

](https://seoskill.dev/docs/reports/serp-results)[

Review a country-level estimate of a domain's organic footprint beside optional owner-verified Search Console totals.

Domain organic search overview

](https://seoskill.dev/docs/reports/domain-overview)

## Sources used by this report

These primary sources define the provider data or search controls used by the result.

-   [Ahrefs Domain Rating API reference](https://docs.ahrefs.com/en/api/reference/public/get-domain-rating-free)
