Is it possible to retrieve the tournament standings?

Sort:
lacafi

Is there a call to retrieve the current standings of a tournament? The only thing I found is the Get a Tournament Round's Group method, I could iterate through the different matches, but it doesn't tell the amount points made with the win which may have different values in Arena tournaments.

Schachgrenze

you will find everything here:
https://www.chess.com/events/2020-magnus-carlsen-chess-tour-kiva-finals

Todays Match ended 2.5:1.5 for Hikaru!

VictorBenso

Hi @lacafi,
The standings are available only after the tournament is finished.

Let's suppose that you are interested in the following tournament's results:
https://www.chess.com/tournament/live/arena/pointzila-cup-agosto-14-wwwtwitchtvchesszila-426427

At this endpoint:
https://api.chess.com/pub/tournament/{tournament_url}
in our case
https://api.chess.com/pub/tournament/pointzila-cup-agosto-14-wwwtwitchtvchesszila-426427
you will be able go get some information about the tournament.
In this JSON there is an array called "rounds", (in arena tournaments, rounds has always a single element), from which its elements, point to the tournament's rounds results.
The result from our example gives us:
rounds: [
"https://api.chess.com/pub/tournament/pointzila-cup-agosto-14-wwwtwitchtvchesszila-426427/1"
],
from this link you can obtain all the games played in the arena and also it's final standings.
Best of luck.