/v1/fixtures
Active fixtures for a league (defaults to top active league)
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/sxbet-api/v1/fixtures" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sxbet-api/v1/fixtures", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sxbet-api/v1/fixtures");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/sxbet-api/v1/fixtures",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 79,
"venue": "sxbet",
"fixtures": [
{
"league": "WNBA",
"status": 2,
"event_id": "L10825636",
"sport_id": 1,
"start_date": "2023-06-21T19:30:00.000Z",
"participant_one": "Phoenix Mercury W",
"participant_two": "Las Vegas Aces W"
},
{
"league": "WNBA",
"status": 2,
"event_id": "L10863054",
"sport_id": 1,
"start_date": "2023-06-28T23:00:00.000Z",
"participant_one": "Washington Mystics W",
"participant_two": "Atlanta Dream W"
},
{
"league": "WNBA",
"status": 2,
"event_id": "L10875303",
"sport_id": 1,
"start_date": "2023-06-30T23:30:00.000Z",
"participant_one": "Atlanta Dream W",
"participant_two": "Washington Mystics W"
},
{
"league": "WNBA",
"status": 2,
"event_id": "L10816434",
"sport_id": 1,
"start_date": "2023-06-23T23:30:00.000Z",
"participant_one": "Atlanta Dream W",
"participant_two": "New York Liberty W"
},
{
"league": "WNBA",
"status": 2,
"event_id": "L10887387",
"sport_id": 1,
"start_date": "2023-07-02T22:00:00.000Z",
"participant_one": "Seattle Storm W",
"participant_two": "New York Liberty W"
},
{
"league": "WNBA",
"status": 2,
"event_id": "L10857088",
"sport_id": 1,
"start_date": "2023-06-27T23:00:00.000Z",
"participant_one": "Connecticut Sun W",
"participant_two": "New York Liberty W"
},
{
"league": "WNBA",
"status": 2,
"event_id": "L10904712",
"sport_id": 1,
"start_date": "2023-07-05T23:00:00.000Z",
"participant_one": "New York Liberty W",
"participant_two": "Phoenix Mercury W"
},
{
"league": "WNBA",
"status": 2,
"event_id": "L10916139",
"sport_id": 1,
"start_date": "2023-07-07T23:00:00.000Z",
"participant_one": "Washington Mystics W",
"participant_two": "Indiana Fever W"
},
{
"league": "WNBA",
"status": 2,
"event_id": "L10928518",
"sport_id": 1,
"start_date": "2023-07-09T23:00:00.000Z",
"participant_one": "Minnes
…