Ir al contenido
GET /v1/fixtures

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

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/sxbet-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
…