> ## Documentation Index
> Fetch the complete documentation index at: https://aisa.one/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Domain Rating

> Ahrefs Domain Rating (0-100 authority score) and Ahrefs Rank for a domain.



## OpenAPI

````yaml openapi/ahrefs.json GET /ahrefs/site-explorer/domain-rating
openapi: 3.0.3
info:
  title: Ahrefs API
  version: 1.0.0
  description: >-
    Ahrefs SEO and backlink data routed through the AIsa gateway. Covers Site
    Explorer domain authority (Domain Rating) and core site metrics
    (organic/paid keywords, organic traffic, traffic value). Proxies the Ahrefs
    API v3 Site Explorer endpoints.
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - BearerAuth: []
paths:
  /ahrefs/site-explorer/domain-rating:
    get:
      summary: Domain Rating
      description: >-
        Return the Ahrefs Domain Rating (0-100 authority score) and Ahrefs Rank
        for a target domain on a given date. Billed $0.02 per successful call;
        4xx/5xx are not charged.
      operationId: ahrefsDomainRating
      parameters:
        - name: target
          in: query
          required: true
          description: Target domain, e.g. `ahrefs.com`.
          schema:
            type: string
        - name: date
          in: query
          required: true
          description: Snapshot date in `YYYY-MM-DD` format.
          schema:
            type: string
            format: date
            example: '2026-08-01'
      responses:
        '200':
          description: Domain Rating result.
          content:
            application/json:
              example:
                domain_rating:
                  domain_rating: 91
                  ahrefs_rank: 619
              schema:
                type: object
                properties:
                  domain_rating:
                    type: object
                    properties:
                      domain_rating:
                        type: number
                        description: Domain Rating (0-100).
                      ahrefs_rank:
                        type: integer
                        description: Global Ahrefs Rank.
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: AISA API Key

````