Broadcasts
Get a player of a broadcast
Get the details of a specific player and their games from a broadcast tournament.
get/broadcast/{broadcastTournamentId}/players/{playerId}
Path parameters
broadcastTournamentIdstring required
The broadcast tournament ID
playerIdstring required
The unique player ID within the broadcast. This is usually their fideId. If the player does not have a fideId, it is their name. Consult the list of players for the broadcast for which ID to use.
Response
The broadcast player
Example response
{
"name": "Hernandez Riera, Jose",
"rating": 2149,
"fideId": 3408230,
"fed": "CHI",
"score": 2.5,
"played": 7,
"tiebreaks": [
{
"description": "Buchholz Cut 1",
"points": 45.5
}
],
"rank": 1,
"games": [
{
"opponent": {
"name": "Hernandez Riera, Jose",
"rating": 2149,
"fideId": 3408230,
"fed": "CHI"
}
}
]
}