tournament-rounds
Get Round Standings
tournament-rounds
Get Round Standings
Get the standings as they were at the end of a specific round
GET
/
api
/
v1
/
tournament-rounds
/
{id}
/
standings
{
"round_number": 123,
"standings": [
{
"rank": 123,
"player_id": 123,
"name": "<string>",
"match_points": 123,
"record": "<string>",
"match_win_percentage": 123,
"opponent_match_win_percentage": 123,
"game_win_percentage": 123,
"opponent_game_win_percentage": 123,
"opponent_average_match_points": 123,
"wins": 123,
"losses": 123,
"draws": 123,
"games_won": 123,
"games_lost": 123,
"games_drawn": 123,
"playoff_wins": 123,
"playoff_losses": 123,
"user_event_status_ids": [
123
]
}
]
}
Authorizations
API key in format: sk_*
Path Parameters
A unique integer value identifying this tournament round.
Response
200 - application/json
{
"round_number": 123,
"standings": [
{
"rank": 123,
"player_id": 123,
"name": "<string>",
"match_points": 123,
"record": "<string>",
"match_win_percentage": 123,
"opponent_match_win_percentage": 123,
"game_win_percentage": 123,
"opponent_game_win_percentage": 123,
"opponent_average_match_points": 123,
"wins": 123,
"losses": 123,
"draws": 123,
"games_won": 123,
"games_lost": 123,
"games_drawn": 123,
"playoff_wins": 123,
"playoff_losses": 123,
"user_event_status_ids": [
123
]
}
]
}