Leaderboard

Returns indie projects ranked by Ahrefs Domain Rating, highest first. Only domains with a confirmed owner are included.

GET/api/public/leaderboard

Query parameters

NameTypeRequiredDescription
limitinteger (1–500)optionalMaximum number of results to return. Defaults to 100.

Example request

curl "https://drstud.io/api/public/leaderboard?limit=10"

Example response (200)

{
  "count": 10,
  "results": [
    {
      "domain": "example.com",
      "domain_rating": 78.4,
      "checked_at": "2026-06-28T10:14:00.000Z",
      "first_checked_at": "2026-04-12T08:01:00.000Z",
      "first_domain_rating": 70.2,
      "x_handle": "@example"
    }
  ],
  "attribution": "Data from DR Studio (https://drstud.io). Domain Rating by Ahrefs."
}

Response fields

FieldTypeDescription
countnumberNumber of results returned.
resultsarrayRanked list of domains. See fields below.
results[].domainstringNormalized domain.
results[].domain_ratingnumber | nullLatest Ahrefs DR (0–100).
results[].checked_atstring (ISO 8601)When the latest rating was recorded.
results[].first_checked_atstring (ISO 8601) | nullWhen the domain was first added to DR Studio.
results[].first_domain_ratingnumber | nullDR at the time the domain was first tracked. Use with current DR to compute change.
results[].x_handlestring | nullOwner's verified X (Twitter) handle, if linked.
attributionstringRequired attribution string.