Path parameters:
-
{groupUid}
(string) The ID of the group/season * -
{mapUid}
(string) The UID of the map *
Service provided by Openplanet
Get map medal records
Audience: NadeoLiveServices
GET
https://live-services.trackmania.nadeo.live/api/token/leaderboard/group/{groupUid}/map/{mapUid}/medals
Path parameters:
{groupUid}
(string)
The ID of the group/season
*
{mapUid}
(string)
The UID of the map
*
Gets automatically selected medal records for a map based on its leaderboard (when available).
Remarks:
groupUid
"Personal_Best"
can be used to get the global leaderboard.groupUid
parameter, this one also supports groups/seasons that are already closed.Example request:
GET https://live-services.trackmania.nadeo.live/api/token/leaderboard/group/Personal_Best/map/q1kDVh5fq1OCKfyFjJ2QAnB9UW8/medals
Example response:
{
"groupUid": "Personal_Best",
"mapUid": "q1kDVh5fq1OCKfyFjJ2QAnB9UW8",
"medals": [
{
"medal": "Gold",
"accountId": "75328b1f-a38e-4ac0-9233-09a98dffd8ca",
"zoneId": "3022973a-7e13-11e8-8060-e284abfd2bc4",
"zoneName": "Zürich",
"score": 46690
},
{
"medal": "Silver",
"accountId": "188a5a83-0a14-493b-8155-11986db487ad",
"zoneId": "3022a07d-7e13-11e8-8060-e284abfd2bc4",
"zoneName": "Ukraine",
"score": 49210
},
{
"medal": "Bronze",
"accountId": "fbfee29a-76e3-43d8-96d7-bc9b425cfe33",
"zoneId": "3022e90b-7e13-11e8-8060-e284abfd2bc4",
"zoneName": "Ohio",
"score": 52980
}
]
}
If the groupUid
is invalid, the response will be an empty object:
{}
If the map does not exist, the response will return an empty list of medals:
{
"groupUid": "Personal_Best",
"mapUid": "q1kDVh5fq1OCKfyFjJ2QAnB9UW8_fake",
"medals": [
]
}