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

# Get live sports scores

> Returns normalized live score state for supported sports events. Event IDs are resolved through AGG's matched-event relationship to the Polymarket event used by the score provider. Unmatched, unsupported, and provider-unavailable events are listed in missingEventIds.



## OpenAPI

````yaml /openapi/openapi.json get /sports/live
openapi: 3.0.2
info:
  title: AGG API
  version: 1.0.0
  description: >-
    Prediction market aggregator REST API — authentication, users, venue events,
    venue markets, orderbooks, charts, and execution workflows.
servers:
  - url: https://api.agg.market
    description: Production
  - url: https://api.staging.agg.market
    description: Staging
security: []
paths:
  /sports/live:
    get:
      tags:
        - Discovery
      summary: Get live sports scores
      description: >-
        Returns normalized live score state for supported sports events. Event
        IDs are resolved through AGG's matched-event relationship to the
        Polymarket event used by the score provider. Unmatched, unsupported, and
        provider-unavailable events are listed in missingEventIds.
      operationId: getSportsLive
      parameters:
        - name: eventIds
          in: query
          required: true
          schema:
            anyOf:
              - minItems: 1
                maxItems: 25
                type: array
                items:
                  minLength: 1
                  type: string
              - minLength: 1
                type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - missingEventIds
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      required:
                        - eventId
                        - sport
                        - status
                        - participants
                        - period
                        - clock
                        - updatedAt
                      properties:
                        eventId:
                          type: string
                        sport:
                          type: string
                        status:
                          type: string
                          enum:
                            - scheduled
                            - live
                            - paused
                            - finished
                            - cancelled
                            - postponed
                            - unknown
                        participants:
                          minItems: 2
                          maxItems: 2
                          type: array
                          items:
                            type: object
                            required:
                              - position
                              - name
                              - shortName
                              - imageUrl
                              - score
                            properties:
                              position:
                                type: string
                                enum:
                                  - first
                                  - second
                              name:
                                type: string
                              shortName:
                                type: string
                                nullable: true
                              imageUrl:
                                type: string
                                nullable: true
                              score:
                                type: string
                                nullable: true
                        period:
                          type: string
                          nullable: true
                        clock:
                          type: string
                          nullable: true
                        updatedAt:
                          type: string
                          nullable: true
                  missingEventIds:
                    type: array
                    items:
                      type: string
        '400':
          description: '400'
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                properties:
                  message:
                    type: string
        '401':
          description: '401'
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                properties:
                  message:
                    type: string
      security:
        - appId: []
components:
  securitySchemes:
    appId:
      type: apiKey
      in: header
      name: x-app-id
      description: Your application ID. Required for all app-tier and user-tier routes.

````