For the complete documentation index, see llms.txt. This page is also available as Markdown.

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://api.overtime.io/overtime-v2/live-scores

GET https://api.overtime.io/overtime-v2/live-scores/{{gameId}}

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

Example Request

https://api.overtime.io/overtime-v2/live-scores

Single game request

https://api.overtime.io/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

Name
Type
Description

period

number

Current game period

gameStatus

string

Current game status

displayClock

string

Current time in the game

homeScore

number

Home team score

awayScore

number

Away team score

homeScoreByPeriod

number[]

Home team score by period

awayScoreByPeriod

number[]

Away team score by period

Last updated