List Games
Sports Discovery API
List Games
Compact game/outcome discovery view backed by canonical sports tables
GET
List Games
Overview
Returns broad sports games with canonical outcomes. This endpoint is the compact discovery view: venues are summarized at the game level, and each outcome exposes the canonicalpredexon_id used for routing and lookup.
For per-venue execution detail, prices, token IDs, condition IDs, and market titles, use GET /v2/sports/markets or GET /v2/sports/outcomes/{predexon_id}.
Query Parameters
| Param | Type | Default | Description |
|---|---|---|---|
sport | string | - | Filter by sport: basketball, soccer, hockey, baseball. |
league | string | - | Filter by league code (e.g. nba, epl). See league codes. |
status | string | open | open or closed. |
game_date | string | - | Exact date, YYYY-MM-DD. See date conventions. |
game_date_from | string | - | Inclusive lower bound, YYYY-MM-DD. |
game_date_to | string | - | Inclusive upper bound, YYYY-MM-DD. |
search | string | - | Case-insensitive search against market titles. |
sort_by | string | game_date_asc | game_date_asc or game_date_desc. |
limit | int | 50 | 1-200. |
pagination_key | string | - | Opaque cursor from the previous response. Omit on the first request. |
Pagination
Sports list endpoints use cursor pagination. Pass the returnedpagination.pagination_key into the next request. Do not use offset-based pagination.
Response Fields
Game
| Field | Type | Description |
|---|---|---|
game_id | string | Canonical game identifier (e.g. nba-atl-nyk-2026-04-18). |
title | string | Display title (e.g. "Atlanta Hawks vs New York Knicks"). |
league | string | League code. |
league_name | string | Human-readable league name. |
sport | string | Sport name. |
game_date | string | Calendar date, YYYY-MM-DD. |
status | string | "open" or "closed". |
venues_available | int | Number of venues offering this game. |
total_volume | number? | USD volume summed across all venues. |
total_liquidity | number? | USD liquidity summed across all venues. |
outcomes[] | array | One entry per tradeable side. |
Outcome
| Field | Type | Description |
|---|---|---|
outcome | string | Canonical outcome code (team code or "draw"). |
label | string | Human-readable label. |
yes.predexon_id | string | Canonical predexon_id for this outcome when buying YES. |
no.predexon_id | string? | Canonical predexon_id for buying NO on that venue question/selection when an executable NO listing exists. In 2-way games this may equal the sibling YES outcome ID; in 3-way soccer it points to an explicit negation outcome such as “Draw does not happen.” |
predexon_id is canonical across venues. The same team/draw outcome for the same game has one predexon_id, even when several venues list it./games is intentionally compact. It does not return venue-native identifiers. Use /markets for venue comparison and /outcomes/{predexon_id} for route resolution.Example
GET /v2/sports/games?league=mlb&limit=1
When to Use This vs /markets
| Use Case | Endpoint |
|---|---|
| Trading UI — show compact game/outcome list | /games (this endpoint) |
Order routing — find venue for a predexon_id | GET /outcomes/{predexon_id} |
| Arbitrage detection — compare prices across venues | /markets |
| Venue-specific metadata (market_id, condition_id, etc.) | /markets |
| Building a data feed with full venue detail | /markets |
Caching
Responses are cached for 60 seconds.Authorizations
Data key provided by Predexon. The trading key used by the Order Router on trade.predexon.com is a separate credential.
Query Parameters
Filter by sport.
Available options:
basketball, soccer, hockey, baseball Filter by league code (e.g. nba, epl).
Market status.
Available options:
open, closed Exact game date (YYYY-MM-DD).
Games on or after date (YYYY-MM-DD).
Games on or before date (YYYY-MM-DD).
Search game/market titles.
Sort order.
Available options:
game_date_asc, game_date_desc Max games to return.
Required range:
1 <= x <= 200Cursor from the previous response. Omit on the first request.
Response
200 - application/json
Successful response
