Overtime V2 live markets

Get a list of all live markets.

REST API

GET https://overtimemarketsv2.xyz/overtime-v2/live-markets

See the live markets API endpoint with request/response examples under Postman documentation.

Example Request

https://overtimemarketsv2.xyz/overtime-v2/networks/10/live-markets

Example Response

{
  "markets": [
    {
      "gameId": "0x6636646334303563663864396330373365626166363237633239373432653430",
      "sport": "Soccer",
      "leagueId": 19,
      "leagueName": "J1 League",
      "subLeagueId": 19,
      "typeId": 0,
      "type": "winner",
      "maturity": 1717221600,
      "maturityDate": "2024-06-01T06:00:00.000Z",
      "homeTeam": "Machida Zelvia",
      "awayTeam": "Albirex Niigata",
      "homeScore": 3,
      "awayScore": 2,
      "gameClock": 82,
      "gamePeriod": "2H",
      "finalResult": 0,
      "status": 0,
      "isOpen": true,
      "isResolved": false,
      "isCanceled": false,
      "isPaused": false,
      "isOneSideMarket": false,
      "line": 0,
      "isPlayerPropsMarket": false,
      "isOneSidePlayerPropsMarket": false,
      "isYesNoPlayerPropsMarket": false,
      "playerProps": {
        "playerId": 0,
        "playerName": ""
      },
      "combinedPositions": [
        [],
        [],
        []
      ],
      "odds": [
        {
          "american": 0,
          "decimal": 0,
          "normalizedImplied": 0
        },
        {
          "american": 0,
          "decimal": 0,
          "normalizedImplied": 0
        },
        {
          "american": 0,
          "decimal": 0,
          "normalizedImplied": 0
        }
      ],
      "proof": [
        "0xda99ce905965676e20806b901cca63dae78213261ed45921cf6f39bbb4b85c24",
        "0xb1ff121b809fafe4d2f775923ac3bcf2de9ce2db206e5a7472357269f47a18d5",
        "0xe62418bfc7d98a561aaa89e838cd1c2c60b8f1c6502588a7d61002eb648d3390"
      ],
      "childMarkets": [],
      "statusCode": "open"
    }
  ],
  "errors": []
}

Response Parameters

NameTypeDescription

markets

Available live markets

errors

string[]

Errors that occurred during live markets fetching, if any

Additional live market parameters

NameTypeDescription

homeScore

number

Home team score

awayScore

number

Away team score

gameClock

number

Current time in the game

gamePeriod

string

Current game period

Last updated