Get a domain's rating

Returns the most recent Ahrefs Domain Rating (DR) for a single domain tracked on DR Studio.

GET/api/public/domain-rating

Query parameters

NameTypeRequiredDescription
domainstringrequiredThe domain to look up, without protocol or path. Example: example.com. The alias "target" is also accepted.

Example request

curl "https://drstud.io/api/public/domain-rating?domain=example.com"

Example response (200)

{
  "domain": "example.com",
  "domain_rating": 78.4,
  "checked_at": "2026-06-28T10:14:00.000Z",
  "attribution": "Data from DR Studio (https://drstud.io). Domain Rating by Ahrefs."
}

Response fields

FieldTypeDescription
domainstringNormalized domain (lowercase, no protocol).
domain_ratingnumber | nullAhrefs DR on a 0–100 logarithmic scale. Null if not yet computed.
checked_atstring (ISO 8601)Timestamp when this rating was recorded.
attributionstringAttribution string you must display if you redistribute the value.

Errors

FieldTypeDescription
400Bad RequestMissing or invalid `domain` parameter.
404Not FoundDomain is not tracked yet. Submit it at drstud.io to start tracking.