1xBet Odds API

Access 1xBet odds via OddsPapi. No scraping, no commercial account required.

Live Odds
Crypto

Get Free API Key

About 1xBet

1xBet is one of the world’s largest crypto-friendly bookmakers, offering over 1,000 daily events across 50+ sports. Known for accepting cryptocurrency deposits, high betting limits, and minimal account restrictions, 1xBet has become a go-to for bettors in markets where traditional sportsbooks are unavailable.

For developers, 1xBet data adds an offshore/crypto pricing perspective that often diverges from regulated markets. 1xBet’s odds can move independently of Pinnacle or US books, creating arbitrage windows. Their extensive market depth — including niche sports and esports — also provides data for long-tail market analysis.

OddsPapi provides 1xBet odds alongside 350+ bookmakers through a unified REST API. Access player props, live odds, and niche market data from 1xBet without a crypto wallet or VPN. The free tier includes 5,000 requests per month and historical data for cross-market arbitrage backtesting.

Quick Start: Access 1xBet Odds

Get started with 1xBet odds in under 5 minutes. Here’s a Python example:

import requests

API_KEY = "YOUR_API_KEY"
BASE_URL = "https://api.oddspapi.io/v4"

# Get 1xBet odds for soccer
response = requests.get(
    f"{BASE_URL}/odds",
    params={
        "apiKey": API_KEY,
        "bookmakers": "1xbet",
        "sportId": 10  # Soccer
    }
)

data = response.json()
for fixture in data.get('data', []):
    home = fixture['participants']['home']['name']
    away = fixture['participants']['away']['name']
    print(f"{home} vs {away}")

    # Access 1xbet odds
    if '1xbet' in fixture.get('bookmakerOdds', {}):
        odds = fixture['bookmakerOdds']['1xbet']
        print(f"  Markets available: {list(odds.get('markets', {}).keys())}")

Why Use OddsPapi for 1xBet Data?

Feature Direct Access OddsPapi
API Access Commercial account required Free tier available
Setup Time Days/weeks of negotiation 5 minutes
Other Bookmakers 1xBet only 346+ bookmakers
Sharp Lines Not available Pinnacle, Singbet, SBOBet
Historical Data Not available Included free

Technical Specifications

Bookmaker Slug 1xbet
Live Odds Yes
Classification Crypto
Data Format JSON (REST API)
WebSocket Available for live odds
Authentication API key (query parameter)

Available Markets

Access a wide range of betting markets from 1xBet through our API:

  • Match Winner – Full Time Result (1X2)
  • Over/Under – Total goals, points, etc.
  • Asian Handicap – Line betting for balanced odds
  • Both Teams to Score – Yes/No markets
  • Player Props – Individual player markets (where available)
  • Live Markets – In-play odds that update in real-time

Start Using 1xBet Data Today

Get access to 1xBet odds plus 346 other bookmakers. Free tier includes 5,000 requests per month.

  • No credit card required
  • 5-minute setup
  • Historical data included
  • WebSocket support for live odds

Get Free API Key
Read Documentation