Vai al contenuto
GET /v1/fixtures

Active fixtures for a league (defaults to top active league)

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/sxbet-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
…