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

# List sports scores

> Live and recently finished scores from the Polymarket sports feed. Without `slug`, returns every fixture currently in memory (`{ scores: [...] }`). With `slug`, returns that fixture only (memory first, then Gamma by slug); unknown slugs return `{ scores: [] }`, not 404.



## OpenAPI

````yaml /api-spec/openapi.yaml get /sports/scores
openapi: 3.0.3
info:
  title: United Market API
  version: 1.0.0
  description: >-
    Public backend API for market data, trading, authentication, profiles,
    comments, and leaderboards.
servers:
  - url: https://api.unitedmarket.ai
    description: United Market backend
security: []
tags:
  - name: Markets
    description: >-
      Market discovery, market details, orderbooks, tickers, price history, and
      trades.
  - name: Orders
    description: Signed order submission, cancellation, order lookup, and balances.
  - name: Authentication
    description: SIWE wallet authentication.
  - name: Discovery
    description: Tags and market groups.
  - name: Social
    description: Comments, users, and leaderboard data.
  - name: Fees
    description: Effective trading fee rate per market.
  - name: Referral
    description: Referral codes, attribution, and reward summaries.
  - name: Sports
    description: Live and recently finished sports scores.
paths:
  /sports/scores:
    get:
      tags:
        - Sports
      summary: List sports scores
      description: >-
        Live and recently finished scores from the Polymarket sports feed.
        Without `slug`, returns every fixture currently in memory (`{ scores:
        [...] }`). With `slug`, returns that fixture only (memory first, then
        Gamma by slug); unknown slugs return `{ scores: [] }`, not 404.
      operationId: listSportsScores
      parameters:
        - name: slug
          in: query
          schema:
            type: string
          description: >-
            Market-group / Gamma event slug. When set, only that fixture is
            returned.
      responses:
        '200':
          description: Scores returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SportsScoreList'
components:
  schemas:
    SportsScoreList:
      type: object
      required:
        - scores
      properties:
        scores:
          type: array
          items:
            $ref: '#/components/schemas/SportsScore'
    SportsScore:
      type: object
      properties:
        gameId:
          type: string
        slugs:
          type: array
          items:
            type: string
          description: Gamma event slugs for this fixture (parent plus companions).
        homeTeam:
          type: string
          nullable: true
        awayTeam:
          type: string
          nullable: true
        score:
          type: string
          description: Raw feed string (soccer `2-1`, esports `1-7|1-1|Bo3`).
        homeScore:
          type: integer
          nullable: true
        awayScore:
          type: integer
          nullable: true
        period:
          type: string
          nullable: true
        elapsed:
          type: string
          nullable: true
        live:
          type: boolean
        ended:
          type: boolean
        leagueAbbreviation:
          type: string
          nullable: true
        updatedAt:
          type: string
          format: date-time

````