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 sports

Get a list of all supported sports and leagues.

PreviousOvertime V2 integrationNextOvertime V2 market types

Last updated 2 days ago

REST API

GET https://api.overtime.io/overtime-v2/sports

See sports API endpoint with request/response examples under .

Example Request

Example Response

{  
  "4": {
    "sport": "Basketball",
    "id": 4,
    "label": "NBA",
    "opticOddsName": "NBA",
    "provider": "rundown",
    "scoringType": "points",
    "matchResolveType": "overtime",
    "periodType": "quarter",
    "isDrawAvailable": false,
    "live": true,
    "isLiveTestnet": true
  },
  "50": {
    "sport": "Soccer",
    "id": 50,
    "label": "UEFA EURO 2024",
    "opticOddsName": "UEFA - European Championship",
    "provider": "enetpulse",
    "scoringType": "goals",
    "matchResolveType": "regular",
    "periodType": "half",
    "isDrawAvailable": true,
    "live": true,
    "isLiveTestnet": true
  }
}

Response Parameters

Name
Type
Description

sport

string

Market type ID

id

number

League ID

opticOddsName

string

OpticOdds name (needed for live mapping, not relevant for UI)

provider

string

Odds provider. Supported providers: rundown, enetpulse

scoringType

string

Scoring type for sport. Supported scoring types: points, goals, rounds, sets or <empty>.

matchResolveType

string

When final score is set. Supported resolve types: overtime, regular or <empty>.

periodType

string

Period of sport. Supported periods: quarter, half, period, round, inning, set or <empty>.

isDrawAvailable

boolean

Is draw avaulable for sport: true or false.

live

boolean

Are live markets supported for league: true or false.

isLiveTestnet

boolean

Are live markets supported for league on testnet: true or false.

🔥
Postman documentation
https://api.overtime.io/overtime-v2/sports