Overtime V2 live markets (protected)

Get a list of all live markets.

REST API

GET https://api.overtime.io/overtime-v2/live-markets

See the live markets API endpoint with request/response examples under Postman documentationarrow-up-right.

All requests to this route must include a valid API key for authentication. The API key should be provided in the request header as x-api-key.

circle-info

Access to the Overtime API is restricted and requires an approved API key. API keys are issued only to teams or organizations that can clearly demonstrate how their intended use of the API delivers meaningful value to Overtime, its users, or its ecosystem. Requests must include a concrete description of the proposed use case, scope, and anticipated impact. The Overtime API is not intended for experimental, hobbyist, or small personal projects. Requests that do not meet these criteria will not be approved.

https://api.overtime.io/overtime-v2/networks/10/live-marketsarrow-up-right

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

Name
Type
Description

markets

Available live markets

errors

string[]

Errors that occurred during live markets fetching, if any

Additional live market parameters

Name
Type
Description

homeScore

number

Home team score

awayScore

number

Away team score

gameClock

number

Current time in the game

gamePeriod

string

Current game period

Last updated