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

# Get Market

> Fetch a single game with all venue outcomes

## Overview

Fetch the full per-venue detail for a single game by its canonical `game_id`. Returns the same game-level structure as a single entry from [`GET /v2/sports/markets`](/api-reference/sports/markets), but without the pagination wrapper.

Use this when you already have a `game_id` (for example, from a previous `/markets` call or from a link in your UI) and want the latest nested view of every venue covering that game.

## Path Parameters

| Param     | Type   | Description                                                                                                                                                 |
| --------- | ------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `game_id` | string | Canonical Predexon game identifier, e.g. `nba-atl-nyk-2026-04-18`. Format: `{league}-{team_a}-{team_b}-{YYYY-MM-DD}` with team codes sorted alphabetically. |

## Response

A single game object with the same shape as an entry in `games[]` from the list endpoint - see the [field reference on the List Markets page](/api-reference/sports/markets#response-fields).

## Errors

| Status | When                               |
| ------ | ---------------------------------- |
| `404`  | No game found with this `game_id`. |

## Example

`GET /v2/sports/markets/mlb-ari-pit-2026-05-07`

```json theme={null}
{
  "game_id": "mlb-ari-pit-2026-05-07",
  "league": "mlb",
  "league_name": "MLB",
  "sport": "baseball",
  "game_date": "2026-05-07",
  "game_date_timezone": "US/Eastern",
  "title": "Arizona Diamondbacks vs Pittsburgh Pirates",
  "status": "open",
  "market_types": [
    {
      "market_type": "game_winner",
      "venues": [
        {
          "venue": "kalshi",
          "market_title": "Pittsburgh vs Arizona Winner?",
          "volume": 41567.16,
          "liquidity": 25030.64,
          "end_time": "2026-05-07T22:20:55+00:00",
          "outcomes": [
            {
              "outcome": "ari",
              "outcome_label": "Arizona Diamondbacks",
              "event_id": "mlb-ari-pit-2026-05-07",
              "market_id": "KXMLBGAME-26MAY071540PITAZ-AZ",
              "tokens": {
                "yes": { "predexon_id": "px-xz7fw6lsywv2rnwr", "price": 0.0 }
              }
            },
            {
              "outcome": "pit",
              "outcome_label": "Pittsburgh Pirates",
              "event_id": "mlb-ari-pit-2026-05-07",
              "market_id": "KXMLBGAME-26MAY071540PITAZ-PIT",
              "tokens": {
                "yes": { "predexon_id": "px-c3dftfrdu5unmk3g", "price": 0.99 }
              }
            }
          ]
        }
      ],
      "event_id": "mlb-ari-pit-2026-05-07"
    }
  ]
}
```

## Caching

Responses are cached for 60 seconds.


## OpenAPI

````yaml GET /v2/sports/markets/{game_id}
openapi: 3.1.0
info:
  title: Predexon Enterprise API
  description: Unified cross-venue prediction market discovery
  version: 1.0.0
servers:
  - url: https://api.predexon.com
security:
  - apiKey: []
paths:
  /v2/sports/markets/{game_id}:
    get:
      tags:
        - sports
      summary: Get Market
      description: >-
        Get a single broad sports game with all venue outcomes. game_id
        identifies the real-world fixture; event_id identifies the canonical
        market/question scope.
      operationId: get_market_v2_sports_markets__game_id__get
      parameters:
        - name: game_id
          in: path
          required: true
          schema:
            type: string
            title: Game Id
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema: {}
              example:
                game_id: mlb-ari-pit-2026-05-07
                league: mlb
                league_name: MLB
                sport: baseball
                game_date: '2026-05-07'
                game_date_timezone: US/Eastern
                status: open
                title: Arizona Diamondbacks vs Pittsburgh Pirates
                market_types:
                  - market_type: game_winner
                    venues:
                      - venue: kalshi
                        market_title: Pittsburgh vs Arizona Winner?
                        outcomes:
                          - outcome: ari
                            outcome_label: Arizona Diamondbacks
                            event_id: mlb-ari-pit-2026-05-07
                            market_id: KXMLBGAME-26MAY071540PITAZ-AZ
                            tokens:
                              'yes':
                                predexon_id: px-xz7fw6lsywv2rnwr
                                price: 0
                          - outcome: pit
                            outcome_label: Pittsburgh Pirates
                            event_id: mlb-ari-pit-2026-05-07
                            market_id: KXMLBGAME-26MAY071540PITAZ-PIT
                            tokens:
                              'yes':
                                predexon_id: px-c3dftfrdu5unmk3g
                                price: 0.99
                        volume: 41567.16
                        liquidity: 25030.64
                        end_time: '2026-05-07T22:20:55+00:00'
                      - venue: polymarket
                        market_title: Pittsburgh Pirates vs. Arizona Diamondbacks
                        outcomes:
                          - outcome: ari
                            outcome_label: Arizona Diamondbacks
                            event_id: mlb-ari-pit-2026-05-07
                            condition_id: 0x8a70942639237613...
                            market_slug: mlb-pit-ari-2026-05-07
                            tokens:
                              'yes':
                                token_id: 927526441864...
                                predexon_id: px-xz7fw6lsywv2rnwr
                                price: 0
                          - outcome: pit
                            outcome_label: Pittsburgh Pirates
                            event_id: mlb-ari-pit-2026-05-07
                            condition_id: 0x8a70942639237613...
                            market_slug: mlb-pit-ari-2026-05-07
                            tokens:
                              'yes':
                                token_id: 232120875852...
                                predexon_id: px-c3dftfrdu5unmk3g
                                price: 1
                        volume: 853880.442333
                        liquidity: 15200.91
                        end_time: '2026-05-14T19:40:00+00:00'
                    event_id: mlb-ari-pit-2026-05-07
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    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
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Data key provided by Predexon. The trading key used by the Order Router
        on trade.predexon.com is a separate credential.

````