Overtime V2 markets
Get a list of all markets or a single market details.
REST API
GET
https://overtimemarketsv2.xyz/overtime-v2/markets
GET
https://overtimemarketsv2.xyz/overtime-v2/markets/{{gameId}}
See the markets API endpoint with request/response examples under Postman documentation.
Example Request
https://overtimemarketsv2.xyz/overtime-v2/networks/10/markets
Single game request
Example Response
Response Parameters
gameId
string
Game ID
sport
string
leagueId
number
leagueName
string
subLeagueId
number
Game subleague ID. It is used for some sports (tennis and UFC) to separate different levels and rounds of tournaments. (needed on the contract side, not used on UI).
typeId
number
type
string
line
number
Market line (if available).
maturity
number
Game start timestamp
maturityDate
date
Game start date and time
homeTeam
string
The name of the home team
awayTeam
string
The name of the away team
status
The status of the market
isOpen
boolean
Is market open: true
or false
.
isResolved
boolean
Is market resolved: true
or false
.
isCancelled
boolean
Is market cancelled: true
or false
.
isPaused
boolean
Is market paused: true
or false
.
isOneSideMarket
boolean
Is one-side market (motosport, golf winner...): true
or false
.
isPlayerPropsMarket
boolean
Is player props market: true
or false
.
isOneSidePlayerPropsMarket
boolean
Is one-side player props market (who will score first/last touchdown...): true
or false
.
isYesNoPlayerPropsMarket
boolean
Is YES/NO player props market (double-double, triple-double...): true
or false
.
playerProps
Player info (if player props market)
combinedPositions
An array of combined positions if the market is that type (half-time/full-time, winner+total...)
odds
Market odds
proof
string[]
The Merkle proof used for the validation of market data on the contract side
childMarkets
Child markets with the same structure as parent market
statusCode
Market status code used for grouping markets per status.
StatusEnum
OPEN
0
PAUSED
1
RESOLVED
10
CANCELLED
255
StatusCodeEnum
OPEN
open
PAUSED
paused
RESOLVED
resolved
CANCELLED
cancelled
ONGOING
ongoing
PlayerProps
playerId
number
Player ID
playerName
string
The name of the player
CombinedPosition
typeId
number
The type ID of single market
position
number
The position on the single market
line
number
Single market line
Odds
american
number
American format of the odds
decimal
number
Decimal format of the odds
normalizedImplied
number
Normalized Implied format of the odds
Last updated