Get popular markets
curl --request GET \
--url https://api.sx.bet/markets/popularimport requests
url = "https://api.sx.bet/markets/popular"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.sx.bet/markets/popular', 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/markets/popular",
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/markets/popular"
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/markets/popular")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sx.bet/markets/popular")
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": [
{
"status": "ACTIVE",
"marketHash": "0x9e86f7a99672288968cb94c69106cee559da7fb7495a857efce363424716eb0b",
"outcomeOneName": "Wrexham",
"outcomeTwoName": "Not Wrexham",
"outcomeVoidName": "NO_CONTEST",
"teamOneName": "Wrexham",
"teamTwoName": "Swansea City",
"type": 1,
"gameTime": 1773432000,
"sportXeventId": "L18188034",
"liveEnabled": true,
"sportLabel": "Soccer",
"sportId": 5,
"leagueId": 1313,
"leagueLabel": "The Championship",
"group1": "The Championship",
"chainVersion": "SXR"
},
{
"status": "ACTIVE",
"marketHash": "0x3719cd6ada1e6010dba90db84e576184226fb47818dd893cd31bc25e4ed68cbb",
"outcomeOneName": "Over 2.5",
"outcomeTwoName": "Under 2.5",
"outcomeVoidName": "NO_GAME_OR_EVEN",
"teamOneName": "Wrexham",
"teamTwoName": "Swansea City",
"type": 2,
"gameTime": 1773432000,
"line": 2.5,
"sportXeventId": "L18188034",
"liveEnabled": true,
"sportLabel": "Soccer",
"sportId": 5,
"leagueId": 1313,
"leagueLabel": "The Championship",
"group1": "The Championship",
"chainVersion": "SXR",
"mainLine": true
}
]
}Markets
Popular markets
Get the most popular betting markets by volume on the SX Bet exchange.
GET
/
markets
/
popular
Get popular markets
curl --request GET \
--url https://api.sx.bet/markets/popularimport requests
url = "https://api.sx.bet/markets/popular"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.sx.bet/markets/popular', 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/markets/popular",
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/markets/popular"
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/markets/popular")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sx.bet/markets/popular")
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": [
{
"status": "ACTIVE",
"marketHash": "0x9e86f7a99672288968cb94c69106cee559da7fb7495a857efce363424716eb0b",
"outcomeOneName": "Wrexham",
"outcomeTwoName": "Not Wrexham",
"outcomeVoidName": "NO_CONTEST",
"teamOneName": "Wrexham",
"teamTwoName": "Swansea City",
"type": 1,
"gameTime": 1773432000,
"sportXeventId": "L18188034",
"liveEnabled": true,
"sportLabel": "Soccer",
"sportId": 5,
"leagueId": 1313,
"leagueLabel": "The Championship",
"group1": "The Championship",
"chainVersion": "SXR"
},
{
"status": "ACTIVE",
"marketHash": "0x3719cd6ada1e6010dba90db84e576184226fb47818dd893cd31bc25e4ed68cbb",
"outcomeOneName": "Over 2.5",
"outcomeTwoName": "Under 2.5",
"outcomeVoidName": "NO_GAME_OR_EVEN",
"teamOneName": "Wrexham",
"teamTwoName": "Swansea City",
"type": 2,
"gameTime": 1773432000,
"line": 2.5,
"sportXeventId": "L18188034",
"liveEnabled": true,
"sportLabel": "Soccer",
"sportId": 5,
"leagueId": 1313,
"leagueLabel": "The Championship",
"group1": "The Championship",
"chainVersion": "SXR",
"mainLine": true
}
]
}Last modified on April 14, 2026
⌘I
