Leaderboard Entries
A call to this endpoint will retrieve a given leadboard's entires, targeted by its ID.
On-site Representation
A leaderboards's entries can be found on the leaderboard info page:
HTTP Request
GET
https://retroachievements.org/API/API_GetLeaderboardEntries.php?i=104370
Query Parameters
Name | Required? | Description |
---|---|---|
z | Yes | Your username. |
y | Yes | Your web API key. |
i | Yes | The target leaderboard ID. |
c | Count, number of records to return (default: 100, max: 500). | |
o | Offset, number of entries to skip (default: 0). |
Client Library
Not yet supported.
Response
json
{
"Count": 100,
"Total": 1287,
"Results": [
{
"Rank": 1,
"User": "vani11a",
"Score": 390490,
"FormattedScore": "390,490",
"DateSubmitted": "2024-07-25T15:51:00Z"
}
// ...
]
}
Source
Repo | URL |
---|---|
RAWeb | https://github.com/RetroAchievements/RAWeb/blob/master/public/API/API_GetLeaderboardEntries.php |