Find markets by hash
curl --request GET \
--url https://api.sx.bet/markets/findimport requests
url = "https://api.sx.bet/markets/find"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.sx.bet/markets/find', 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/find",
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/find"
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/find")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sx.bet/markets/find")
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": "0x531e9e6d6469f6323d464340e91840b3666e4e43cf04b8c2a52c2ac0d67839fb",
"outcomeOneName": "Golden State Warriors +6.5",
"outcomeTwoName": "Minnesota Timberwolves -6.5",
"outcomeVoidName": "NO_GAME_OR_EVEN",
"teamOneName": "Golden State Warriors",
"teamTwoName": "Minnesota Timberwolves",
"type": 342,
"gameTime": 1773453600,
"line": 6.5,
"sportXeventId": "L18272456",
"liveEnabled": true,
"sportLabel": "Basketball",
"sportId": 1,
"leagueId": 1,
"leagueLabel": "NBA",
"group1": "NBA",
"chainVersion": "SXR",
"participantOneId": 15002,
"participantTwoId": 14999,
"mainLine": true
}
]
}{
"status": "<string>",
"errorCode": "<string>"
}Markets
Find markets
Look up specific markets by their market hash, including settlement details for resolved markets.
GET
/
markets
/
find
Find markets by hash
curl --request GET \
--url https://api.sx.bet/markets/findimport requests
url = "https://api.sx.bet/markets/find"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.sx.bet/markets/find', 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/find",
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/find"
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/find")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sx.bet/markets/find")
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": "0x531e9e6d6469f6323d464340e91840b3666e4e43cf04b8c2a52c2ac0d67839fb",
"outcomeOneName": "Golden State Warriors +6.5",
"outcomeTwoName": "Minnesota Timberwolves -6.5",
"outcomeVoidName": "NO_GAME_OR_EVEN",
"teamOneName": "Golden State Warriors",
"teamTwoName": "Minnesota Timberwolves",
"type": 342,
"gameTime": 1773453600,
"line": 6.5,
"sportXeventId": "L18272456",
"liveEnabled": true,
"sportLabel": "Basketball",
"sportId": 1,
"leagueId": 1,
"leagueLabel": "NBA",
"group1": "NBA",
"chainVersion": "SXR",
"participantOneId": 15002,
"participantTwoId": 14999,
"mainLine": true
}
]
}{
"status": "<string>",
"errorCode": "<string>"
}There are a few additional fields if you are querying a market that has been settled/reported:
reportedDate, outcome, teamOneScore, teamTwoScore.Last modified on August 11, 2026
⌘I