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

TeamInfo

Last updated