Overtime V2 live scores

Get a live scores for games or per single game (in case the provider supports live scores).

REST API

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

GET https://overtimemarketsv2.xyz/overtime-v2/live-scores/{{gameId}}

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

Example Request

https://overtimemarketsv2.xyz/overtime-v2/live-scores

Single game request

https://overtimemarketsv2.xyz/overtime-v2/live-scores/0x3133386537313735646435636664666431396361323935363931343036613235

Example Response

{
  "period": 9,
  "gameStatus": "STATUS_FINAL",
  "displayClock": "0.00",
  "homeScore": 6,
  "awayScore": 5,
  "homeScoreByPeriod": [
    0,
    0,
    2,
    0,
    3,
    0,
    0,
    1
  ],
  "awayScoreByPeriod": [
    0,
    0,
    0,
    0,
    0,
    1,
    0,
    0,
    4
  ]
}

Response Parameters

Last updated