Skip to main content
GET
/
api
/
tournaments
/
{tournamentId}
/
players
List tournament players
curl --request GET \
  --url https://ts.playservices.tech/api/api/tournaments/{tournamentId}/players \
  --header 'Authorization: Bearer <token>'
{
  "players": [
    {
      "playerId": "<string>",
      "displayName": "<string>",
      "status": "registered",
      "registeredAt": "2023-11-07T05:31:56Z",
      "entryCount": 123,
      "totalPaid": 123,
      "currentPosition": 123,
      "currentScore": 123,
      "eliminatedAt": "2023-11-07T05:31:56Z",
      "prizeAmount": 123
    }
  ],
  "totalCount": 123
}
Retrieve a list of all players registered for a tournament with their current status, entry count, and performance metrics. Filter by player status to show active, eliminated, or winning players.

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"

Query Parameters

status
enum<string>

Filter by player status

Available options:
registered,
active,
eliminated,
winner

Response

List of tournament players

players
object[]
totalCount
integer