> ## Documentation Index
> Fetch the complete documentation index at: https://docs-ts.playservices.tech/llms.txt
> Use this file to discover all available pages before exploring further.

# Get tournament configuration

> Get game-specific tournament configuration



## OpenAPI

````yaml api-reference/openapi.json get /api/internal/tournaments/{tournamentId}/config
openapi: 3.1.0
info:
  title: Tournament Platform API
  description: >-
    Comprehensive API for managing real-time multiplayer tournaments with Game
    Platform integration. Includes both external Casino Integration APIs and
    internal Game Platform APIs.
  version: 1.0.0
  license:
    name: MIT
  contact:
    name: Tournament Platform Support
    url: https://ts.playservices.tech/
    email: support@playservices.tech
servers:
  - url: https://ts.playservices.tech/api
    description: Production server
security:
  - OperatorAPIKey: []
  - InternalAPIKey: []
paths:
  /api/internal/tournaments/{tournamentId}/config:
    get:
      tags:
        - Game Platform - Configuration
      summary: Get tournament configuration
      description: Get game-specific tournament configuration
      parameters:
        - $ref: '#/components/parameters/TournamentId'
      responses:
        '200':
          description: Tournament configuration
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TournamentConfig'
        '404':
          $ref: '#/components/responses/NotFound'
      security:
        - InternalAPIKey: []
components:
  parameters:
    TournamentId:
      name: tournamentId
      in: path
      required: true
      description: Unique tournament identifier
      schema:
        type: string
        example: '12345'
  schemas:
    TournamentConfig:
      type: object
      properties:
        tournament_id:
          type: string
        name:
          type: string
        game_slug:
          type: string
        tournament_type:
          type: string
        max_players:
          type: integer
        min_players:
          type: integer
        status:
          type: string
        scheduled_start:
          type: string
          format: date-time
        entry_fee:
          type: number
        prize_pool_config:
          type: object
        game_config:
          type: object
        timing:
          type: object
        entry_settings:
          type: object
          properties:
            max_entries_per_player:
              type: integer
            rebuy_enabled:
              type: boolean
            rebuy_fee:
              type: number
    Error:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: string
        message:
          type: string
        details:
          type: object
  responses:
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    OperatorAPIKey:
      type: http
      scheme: bearer
      description: >-
        Operator API key with role-based permissions (tournaments.read,
        players.write, etc.)
    InternalAPIKey:
      type: apiKey
      in: header
      name: X-Internal-Api-Key
      description: Internal API key for Game Platform integration

````