Skip to main content
GET
/
api
/
tournaments
/
{tournamentId}
/
players
/
{playerId}
Get player status
curl --request GET \
  --url https://ts.playservices.tech/api/api/tournaments/{tournamentId}/players/{playerId} \
  --header 'Authorization: Bearer <token>'
{
  "player_id": "<string>",
  "internal_player_id": "<string>",
  "display_name": "<string>",
  "tournament_id": "<string>",
  "status": "<string>",
  "points": "<string>",
  "position": 123,
  "current_round": "<string>",
  "current_group": "<string>",
  "elimination_round": 123
}

Authorizations

Authorization
string
header
required

Operator API key with role-based permissions (tournaments.read, players.write, etc.)

Path Parameters

tournamentId
string
required

Unique tournament identifier

Example:

"12345"

playerId
string
required

Player identifier (can be internal player ID or database player ID)

Example:

"123"

Response

Player status information

player_id
string
internal_player_id
string
display_name
string
tournament_id
string
status
string
points
string
position
integer
current_round
string
current_group
string
elimination_round
integer