Headers:
-
Authorization: nadeo_v1 t={token}An access token for theNadeoLiveServicesaudience
Service provided by Openplanet
Get player matchmaking progressions
GET
https://meet.trackmania.nadeo.club/api/matchmaking/{matchmakingType}/progression/players?players[]={accountID}
Headers:
Authorization: nadeo_v1 t={token}
An access token for the NadeoLiveServices audience
Path parameters:
{matchmakingType}
integer
The ID of the matchmaking type
*
Query parameters:
{accountID}
string
A valid account ID
*
Gets matchmaking progressions (for the specified type) for the requested players.
Remarks:
414 error if the request URI length is 8220 characters or more (corresponding to just over 150 account IDs, depending on how you encode the URI).Example request:
https://meet.trackmania.nadeo.club/api/matchmaking/5/progression/players?players[]=94232bb9-9774-41f8-9016-3e653581ce9a
Example response:
{
"progressions": [
{
"player": "94232bb9-9774-41f8-9016-3e653581ce9a",
"division": "bd7282b7-04c4-4c25-b672-1f538ef7b5f9",
"progression": 5257
}
]
}
To retrieve data for more than one account at once, send the accountID values as follows:
GET https://matchmaking.trackmania.nadeo.club/api/matchmaking/5/progression/players?players[]=01fe5b11-5ada-48a0-9da7-367e153ac3ad&players[]=18f49288-fbbf-488c-bb28-083df93f0447
If the requested matchmakingType does not exist, the response will contain an error.