> ## 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 results

> Retrieve final tournament results and prize distributions



## OpenAPI

````yaml api-reference/openapi.json get /api/tournaments/{tournamentId}/results
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/tournaments/{tournamentId}/results:
    get:
      tags:
        - Casino Integration - Results
      summary: Get tournament results
      description: Retrieve final tournament results and prize distributions
      parameters:
        - $ref: '#/components/parameters/TournamentId'
      responses:
        '200':
          description: Tournament results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TournamentResults'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          description: Tournament not yet completed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - OperatorAPIKey: []
components:
  parameters:
    TournamentId:
      name: tournamentId
      in: path
      required: true
      description: Unique tournament identifier
      schema:
        type: string
        example: '12345'
  schemas:
    TournamentResults:
      type: object
      properties:
        tournamentId:
          type: string
        name:
          type: string
        status:
          type: string
          example: completed
        completedAt:
          type: string
          format: date-time
        duration:
          type: integer
          description: Duration in seconds
        totalPlayers:
          type: integer
        totalRounds:
          type: integer
        prizePool:
          $ref: '#/components/schemas/PrizePool'
        winners:
          type: array
          items:
            $ref: '#/components/schemas/Winner'
        statistics:
          $ref: '#/components/schemas/TournamentStatistics'
    Error:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: string
        message:
          type: string
        details:
          type: object
    PrizePool:
      type: object
      properties:
        totalAmount:
          type: number
          example: 870
        currency:
          type: string
          example: USD
        guaranteedPrize:
          type: number
          example: 500
        distribution:
          type: object
          additionalProperties:
            type: number
    Winner:
      type: object
      properties:
        position:
          type: integer
        playerId:
          type: string
        displayName:
          type: string
        finalScore:
          type: number
        prizeAmount:
          type: number
        netWinnings:
          type: number
        entryCount:
          type: integer
        totalPaid:
          type: number
    TournamentStatistics:
      type: object
      properties:
        averageScore:
          type: number
        totalEntryFees:
          type: number
        totalRebuys:
          type: integer
        operatorRevenue:
          type: number
  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

````