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

# List Tournaments

> Search football tournaments (competitions)

## What it returns

Substring search over tournament names. Each result nests its **category** (the country, or *International*) and the season window (`scheduled` / `scheduled_end`), plus `risk_tier` and `icon_path` when resolved.

The nested category is the football **sport → category** model in action: the country rides inside the tournament, never the routing key.


## OpenAPI

````yaml openapi/soccer-api.json GET /soccer/v1/tournaments
openapi: 3.1.0
info:
  title: Ticktock Football API
  description: >-
    Football (soccer) B2B catalog — matches, competitors, tournaments,
    categories. Sport-agnostic transport (auth, AMQP, status lifecycle) is
    documented under Platform.
  version: 1.0.0
servers:
  - url: https://api.ticktock.bet
    description: Production
security:
  - XAPIKeyHeader: []
paths:
  /soccer/v1/tournaments:
    get:
      tags:
        - Soccer
      summary: Search / list football tournaments (competitions)
      description: >-
        Substring search on tournament name. Each result nests its category
        (country / International) and the season window
        (scheduled/scheduled_end).
      operationId: list_tournaments_soccer_v1_tournaments_get
      parameters:
        - name: search
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Substring match on tournament name
            title: Search
          description: Substring match on tournament name
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 50
            title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response List Tournaments Soccer V1 Tournaments Get
        '401':
          description: Missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Invalid or deactivated API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - XAPIKeyHeader: []
        - XAccessTokenHeader: []
        - UOFAccessTokenHeader: []
components:
  schemas:
    ErrorResponse:
      properties:
        detail:
          type: string
          title: Detail
      type: object
      required:
        - detail
      title: ErrorResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    XAPIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````