Get live scores
curl --request GET \
--url https://api.sx.bet/live-scoresimport requests
url = "https://api.sx.bet/live-scores"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.sx.bet/live-scores', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sx.bet/live-scores",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.sx.bet/live-scores"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.sx.bet/live-scores")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sx.bet/live-scores")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"status": "success",
"data": [
{
"sportId": 3,
"leagueId": 171,
"sportXeventId": "L17406328",
"currentPeriod": "5th Inning",
"periodTime": "-1",
"teamOneScore": 4,
"teamTwoScore": 1,
"periods": [
{
"label": "1st Inning",
"isFinished": true,
"teamOneScore": "4",
"teamTwoScore": "0"
},
{
"label": "4th Inning",
"isFinished": true,
"teamOneScore": "0",
"teamTwoScore": "1"
},
{
"label": "3rd Inning",
"isFinished": true,
"teamOneScore": "0",
"teamTwoScore": "0"
},
{
"label": "2nd Inning",
"isFinished": true,
"teamOneScore": "0",
"teamTwoScore": "0"
},
{
"label": "5th Inning",
"isFinished": false,
"teamOneScore": "0",
"teamTwoScore": "0"
}
],
"extra": "[{\"Name\":\"Strikes\",\"Value\":\"0\"},{\"Name\":\"Balls\",\"Value\":\"0\"},{\"Name\":\"Outs\",\"Value\":\"0\"},{\"Name\":\"Turn\",\"Value\":\"2\"},{\"Name\":\"Bases\",\"Value\":\"0/0/0\"}]",
"createdAt": "2026-03-13T17:05:53.092Z",
"updatedAt": "2026-03-13T18:21:26.741Z"
}
]
}Live Scores
Live scores
Get real-time live scores for active events on SX Bet.
GET
/
live-scores
Get live scores
curl --request GET \
--url https://api.sx.bet/live-scoresimport requests
url = "https://api.sx.bet/live-scores"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.sx.bet/live-scores', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sx.bet/live-scores",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.sx.bet/live-scores"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.sx.bet/live-scores")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sx.bet/live-scores")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"status": "success",
"data": [
{
"sportId": 3,
"leagueId": 171,
"sportXeventId": "L17406328",
"currentPeriod": "5th Inning",
"periodTime": "-1",
"teamOneScore": 4,
"teamTwoScore": 1,
"periods": [
{
"label": "1st Inning",
"isFinished": true,
"teamOneScore": "4",
"teamTwoScore": "0"
},
{
"label": "4th Inning",
"isFinished": true,
"teamOneScore": "0",
"teamTwoScore": "1"
},
{
"label": "3rd Inning",
"isFinished": true,
"teamOneScore": "0",
"teamTwoScore": "0"
},
{
"label": "2nd Inning",
"isFinished": true,
"teamOneScore": "0",
"teamTwoScore": "0"
},
{
"label": "5th Inning",
"isFinished": false,
"teamOneScore": "0",
"teamTwoScore": "0"
}
],
"extra": "[{\"Name\":\"Strikes\",\"Value\":\"0\"},{\"Name\":\"Balls\",\"Value\":\"0\"},{\"Name\":\"Outs\",\"Value\":\"0\"},{\"Name\":\"Turn\",\"Value\":\"2\"},{\"Name\":\"Bases\",\"Value\":\"0/0/0\"}]",
"createdAt": "2026-03-13T17:05:53.092Z",
"updatedAt": "2026-03-13T18:21:26.741Z"
}
]
}Last modified on April 14, 2026
⌘I
