Skip to main content
GET
/
api
/
tournaments
/
{tournamentId}
Get tournament details
curl --request GET \
  --url https://ts.playservices.tech/api/api/tournaments/{tournamentId} \
  --header 'Authorization: Bearer <token>'
{
  "tournament": {
    "tournamentId": "12345",
    "name": "Daily Championship",
    "gameSlug": "crash-classic",
    "status": "scheduled",
    "scheduledStart": "2023-11-07T05:31:56Z",
    "actualStartTime": "2023-11-07T05:31:56Z",
    "completedAt": "2023-11-07T05:31:56Z",
    "maxPlayers": 100,
    "currentPlayers": 87,
    "entryFee": 10,
    "currency": "USD",
    "prizePool": {
      "totalAmount": 870,
      "currency": "USD",
      "guaranteedPrize": 500,
      "distribution": {}
    },
    "gameConfig": {},
    "createdAt": "2023-11-07T05:31:56Z"
  },
  "player_count": 123,
  "prize_pool": {
    "totalAmount": 870,
    "currency": "USD",
    "guaranteedPrize": 500,
    "distribution": {}
  },
  "leaderboard_preview": [
    {
      "position": 123,
      "player_id": "<string>",
      "display_name": "<string>",
      "points": "<string>",
      "status": "<string>"
    }
  ],
  "participation_stats": {}
}
Retrieve detailed information about a specific tournament including current player count, prize pool details, game configuration, and status. Use this endpoint to display tournament information to 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"

Response

Tournament details

tournament
object
player_count
integer
prize_pool
object
leaderboard_preview
object[]
participation_stats
object