Path parameters:
-
{competitionId}
(string) A valid competition ID *
Service provided by Openplanet
Get competition rounds
Audience: NadeoLiveServices
GET
https://meet.trackmania.nadeo.club/api/competitions/{competitionId}/rounds
Path parameters:
{competitionId}
(string)
A valid competition ID
*
Gets rounds details for a competition ID.
Remarks:
id
is always numerical, while the liveId
is a string typically starting with "LID-COMP-
.challengeId
can be found in the qualifierChallengeId
field. This is what you'd use to get more information about the qualifier, for example when getting the qualifier leaderboards.Example request:
GET https://meet.trackmania.nadeo.club/api/competitions/3633/rounds
Example response:
[
{
"id": 9078,
"position": 0,
"name": "Quarter Finals",
"startDate": 1663425300,
"endDate": 1663427100,
"lockDate": null,
"status": null,
"isLocked": false,
"autoNeedsMatches": true,
"matchScoreDirection": "DESC",
"leaderboardComputeType": "BRACKET",
"teamLeaderboardComputeType": null,
"deletedOn": null,
"nbMatches": 0,
"qualifierChallengeId": 1805,
"trainingChallengeId": null
},
{
"id": 9079,
"position": 1,
"name": "SemiFinals",
"startDate": 1663427400,
"endDate": 1663429200,
"lockDate": null,
"status": null,
"isLocked": false,
"autoNeedsMatches": true,
"matchScoreDirection": "DESC",
"leaderboardComputeType": "BRACKET",
"teamLeaderboardComputeType": null,
"deletedOn": null,
"nbMatches": 0,
"qualifierChallengeId": null,
"trainingChallengeId": null
},
{
"id": 9080,
"position": 2,
"name": "FINAL",
"startDate": 1663429500,
"endDate": 1663431300,
"lockDate": null,
"status": null,
"isLocked": false,
"autoNeedsMatches": true,
"matchScoreDirection": "DESC",
"leaderboardComputeType": "BRACKET",
"teamLeaderboardComputeType": null,
"deletedOn": null,
"nbMatches": 0,
"qualifierChallengeId": null,
"trainingChallengeId": null
}
]
If a competitionId
is invalid, the response will contain a 404
response code.