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
| Name | Type | Required | Description |
|---|---|---|---|
| limit | integer (1–500) | optional | Maximum 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
| Field | Type | Description |
|---|---|---|
| count | number | Number of results returned. |
| results | array | Ranked list of domains. See fields below. |
| results[].domain | string | Normalized domain. |
| results[].domain_rating | number | null | Latest Ahrefs DR (0–100). |
| results[].checked_at | string (ISO 8601) | When the latest rating was recorded. |
| results[].first_checked_at | string (ISO 8601) | null | When the domain was first added to DR Studio. |
| results[].first_domain_rating | number | null | DR at the time the domain was first tracked. Use with current DR to compute change. |
| results[].x_handle | string | null | Owner's verified X (Twitter) handle, if linked. |
| attribution | string | Required attribution string. |