Skip to main content
GET
/
api
/
tournaments
/
{tournamentId}
/
status
Get tournament status
curl --request GET \
  --url https://ts.playservices.tech/api/api/tournaments/{tournamentId}/status \
  --header 'Authorization: Bearer <token>'
{
  "tournament_id": "<string>",
  "status": "<string>",
  "current_phase": "<string>",
  "player_counts": {
    "total_registered": 123,
    "active_players": 123,
    "eliminated_players": 123
  },
  "active_games": [
    {}
  ]
}

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"

Response

Tournament status

tournament_id
string
status
string
current_phase
string
player_counts
object
active_games
object[]