Overtime V2 games info

Get a list of basic info for all games or per single game.

REST API

GET https://overtimemarketsv2.xyz/overtime-v2/games-info

GET https://overtimemarketsv2.xyz/overtime-v2/games-info/{{gameId}}

See games info API endpoint with request/response examples under Postman documentation.

Example Request

https://overtimemarketsv2.xyz/overtime-v2/games-info

Single game request

https://overtimemarketsv2.xyz/overtime-v2/games-info/0x3434383338363000000000000000000000000000000000000000000000000000

Example Response

{
  "0x3430343338333700000000000000000000000000000000000000000000000000": {
    "lastUpdate": 1718667622606,
    "gameStatus": "finished",
    "isGameFinished": true,
    "tournamentName": "EURO Grp. A",
    "teams": [
      {
        "name": "Germany",
        "isHome": true,
        "score": 5,
        "scoreByPeriod": [
          3
        ]
      },
      {
        "name": "Scotland",
        "isHome": false,
        "score": 1,
        "scoreByPeriod": [
          0
        ]
      }
    ]
  }
}

Response Parameters

NameTypeDescription

lastUpdate

number

Timestamp of last update

gameStatus

string

Current game status

isGameFinished

boolean

Is game finished: true or false.

tournamentName

string

Name of the tournament (if available)

tournamentRound

string

Round of the tournament (if available)

teams

Info about teams

TeamInfo

NameTypeDescription

name

string

The name of the team

isHome

boolean

Is home team: true or false.

score

number

Team score

scoreByPeriod

number[]

Team score by period

Last updated