Skip to main content

V5 1xBet API

V5 is SportsAPI Pro’s dedicated odds + live scores layer covering 58 sports. Every event ships with up to 1,200+ betting markets, real-time period scores, match timer, live statistics (possession, shots, cards, corners, attacks), team logos, venue, weather, and win probability.

Key Features

  • 58 sports — football, tennis, basketball, ice hockey, baseball, volleyball, rugby, handball, boxing, table tennis, American football, futsal, cricket, esports, UFC, golf, darts, snooker, motorsport, and 39 more
  • Prematch events with quick-access odds: 1X2, Double Chance, Totals, Handicap, BTTS, Draw No Bet
  • Full event detail with 1,000+ markets across periods and sub-games
  • Live events with scores, period scores, match timer, and live stats
  • Team logos via CDN URLs included on every event
  • Win probability and weather conditions on full event detail
  • Multi-sport — the same endpoints work for every sport via ?sport={id}

Base URL

https://1xbet.sportsapipro.com
A single vanity host serves all 58 sports.

Authentication

Every endpoint except /health requires your API key in the x-api-key header.
curl -H "x-api-key: YOUR_API_KEY" \
  https://1xbet.sportsapipro.com/api/v1/football/top?count=10

Quick Start

const res = await fetch(
  'https://1xbet.sportsapipro.com/api/v1/football/top?count=10',
  { headers: { 'x-api-key': 'YOUR_API_KEY' } }
);
const { data } = await res.json();
data.forEach(e => {
  console.log(`${e.homeTeam} vs ${e.awayTeam}`, e.odds['1x2']);
});

How V5 Compares

FeatureV5V4V3V2
Sports58173430+
Markets per event1,200+Multi-bookien/an/a
Live statsYesNoNoYes
Win probabilityYesNoNoYes
WeatherYesNoNoNo
Team logosYesNoNoYes
All versions are GA, parallel, and permanent — V5 does not replace any earlier version.

Common Workflows

  1. Top odds widget/api/v1/{sport}/top?count=10 → render odds.1x2 per event.
  2. Live scoreboard/api/v1/{sport}/live → poll every 5s for score, timerMinutes, currentPeriodName.
  3. Event detail page/api/v1/event/{id} → render 1,000+ markets grouped by marketCategories.
  4. League browser/api/v1/sports/{sportId}/leagues/api/v1/leagues/{leagueId}/events.
  5. Live league with stats/api/v1/live/leagues/{leagueId} → render stats array.
  6. Live event with full markets/api/v1/live/event/{eventId} → all live markets, live scores, timer, stats, and video in one call.
Last modified on June 22, 2026