Skip to main content
POST
/
api
/
tournaments
/
{tournamentId}
/
start
Start tournament
curl --request POST \
  --url https://ts.playservices.tech/api/api/tournaments/{tournamentId}/start \
  --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"
  },
  "actual_start_time": "2023-11-07T05:31:56Z",
  "final_player_count": 123,
  "final_prize_pool": 123,
  "message": "<string>"
}

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 started

tournament
object
actual_start_time
string<date-time>
final_player_count
integer
final_prize_pool
number
message
string