Search fixtures by team name
curl --request GET \
--url https://api.sx.bet/searchimport requests
url = "https://api.sx.bet/search"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.sx.bet/search', 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/search",
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/search"
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/search")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sx.bet/search")
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": [
{
"gameTime": "2026-04-28T02:10:00.000Z",
"teamOneName": "Los Angeles Dodgers",
"teamTwoName": "Miami Marlins",
"providerEventId": "17495682",
"provider": "LSPORT",
"type": [
28,
226,
236,
342,
1618
],
"eventId": "L17495682",
"chainVersion": "SXR",
"league": {
"leagueId": 171,
"sportId": 3,
"label": "MLB"
}
}
]
}Sports Data
Search fixtures
Find active fixtures by team name on SX Bet.
GET
/
search
Search fixtures by team name
curl --request GET \
--url https://api.sx.bet/searchimport requests
url = "https://api.sx.bet/search"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.sx.bet/search', 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/search",
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/search"
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/search")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sx.bet/search")
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": [
{
"gameTime": "2026-04-28T02:10:00.000Z",
"teamOneName": "Los Angeles Dodgers",
"teamTwoName": "Miami Marlins",
"providerEventId": "17495682",
"provider": "LSPORT",
"type": [
28,
226,
236,
342,
1618
],
"eventId": "L17495682",
"chainVersion": "SXR",
"league": {
"leagueId": 171,
"sportId": 3,
"label": "MLB"
}
}
]
}Last modified on May 4, 2026
⌘I