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

# Get Competitor

> Football competitor profile by SportRadar URN

## What it returns

A single competitor (team or national side) by its SportRadar URN (`sr:competitor:{int}`) — name, country, country code, abbreviation, `is_national`, and the CDN `icon_path` (crest or flag).


## OpenAPI

````yaml openapi/soccer-api.json GET /soccer/v1/competitors/{competitor_id}
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/competitors/{competitor_id}:
    get:
      tags:
        - Soccer
      summary: Football competitor profile (BB §1.3)
      description: Resolve a single competitor by its SportRadar URN (sr:competitor:N).
      operationId: competitor_profile_soccer_v1_competitors__competitor_id__get
      parameters:
        - name: competitor_id
          in: path
          required: true
          schema:
            type: string
            title: Competitor Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: >-
                  Response Competitor Profile Soccer V1 Competitors  Competitor
                  Id  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

````