Skip to main content
GET
/
api
/
internal
/
tournaments
/
{tournamentId}
/
config
Get tournament configuration
curl --request GET \
  --url https://ts.playservices.tech/api/api/internal/tournaments/{tournamentId}/config \
  --header 'X-Internal-Api-Key: <api-key>'
{
  "tournament_id": "<string>",
  "name": "<string>",
  "game_slug": "<string>",
  "tournament_type": "<string>",
  "max_players": 123,
  "min_players": 123,
  "status": "<string>",
  "scheduled_start": "2023-11-07T05:31:56Z",
  "entry_fee": 123,
  "prize_pool_config": {},
  "game_config": {},
  "timing": {},
  "entry_settings": {
    "max_entries_per_player": 123,
    "rebuy_enabled": true,
    "rebuy_fee": 123
  }
}

Authorizations

X-Internal-Api-Key
string
header
required

Internal API key for Game Platform integration

Path Parameters

tournamentId
string
required

Unique tournament identifier

Example:

"12345"

Response

Tournament configuration

tournament_id
string
name
string
game_slug
string
tournament_type
string
max_players
integer
min_players
integer
status
string
scheduled_start
string<date-time>
entry_fee
number
prize_pool_config
object
game_config
object
timing
object
entry_settings
object