Overtime Documentation
  • 🎾Get ready for Overtime
  • THE OVERDROP LEAGUE
  • ❓FAQ
  • ❗Sports Trading Guidelines
  • Free Bet
  • ABOUT OVERTIME SPORTSBOOK
    • 🏈Overtime V2 Architecture
    • Overtime Accounts
    • 🔴Onchain Live Markets
    • 🎲Odds Providers
    • 💵Onchain Free Bets
    • ⚖️Overtime Governance
    • 🐣History of Overtime
  • Overtime Guides
    • Providing Liquidity to Overtime
    • How to use Overtime
    • Current Incentives
    • Common User Mistakes
      • Deposited funds on the wrong network
    • Deposit USDC from Coinbase
    • Deposit USDC or USDT from Binance
      • Deposit from Binance Mobile App
      • Deposit from Binance Website
  • SPEED MARKETS
  • Introduction to Speed Markets
  • Chained Speed Markets
  • Speed Markets Trading Guide
  • Build Your Own Speed Markets App
  • Speed Market Deposit Guides
    • Deposit USDC from Coinbase
    • Deposit from Binance Mobile App
    • Deposit from Binance Website
  • FOR DEVELOPERS
  • 🔥Overtime V2 integration
    • Overtime V2 sports
    • Overtime V2 market types
    • Overtime V2 collaterals
    • Overtime V2 markets (protected)
    • Overtime V2 live markets (protected)
    • Overtime V2 user history
    • Overtime V2 quote data
    • Overtime V2 games info
    • Overtime V2 players info
    • Overtime V2 live scores
  • Links
    • ▶️Use the Dapp
    • ▶️Official Twitter
    • ▶️Medium
  • Resources
    • 📺Marketing Assets
    • ⚖️Terms of Use
Powered by GitBook
On this page
  • REST API
  • Example Request
  • Example Response
  • Response Parameters
  1. Overtime V2 integration

Overtime V2 games info

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

PreviousOvertime V2 quote dataNextOvertime V2 players info

Last updated 2 days ago

REST API

GET https://api.overtime.io/overtime-v2/games-info

GET https://api.overtime.io/overtime-v2/games-info/{{gameId}}

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

Example Request

Single game request

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

Name
Type
Description

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

Name
Type
Description

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

[]

🔥
Postman documentation
https://api.overtime.io/overtime-v2/games-info
https://api.overtime.io/overtime-v2/games-info/0x3434383338363000000000000000000000000000000000000000000000000000
TeamInfo