Vai al contenuto
GET /v1/sports

Supported sports

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/sports" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sxbet-api/v1/sports", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sxbet-api/v1/sports");
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/sports",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "count": 29,
        "venue": "sxbet",
        "sports": [
            {
                "label": "Basketball",
                "sport_id": 1
            },
            {
                "label": "Hockey",
                "sport_id": 2
            },
            {
                "label": "Baseball",
                "sport_id": 3
            },
            {
                "label": "Golf",
                "sport_id": 4
            },
            {
                "label": "Soccer",
                "sport_id": 5
            },
            {
                "label": "Tennis",
                "sport_id": 6
            },
            {
                "label": "Mixed Martial Arts",
                "sport_id": 7
            },
            {
                "label": "Football",
                "sport_id": 8
            },
            {
                "label": "E Sports",
                "sport_id": 9
            },
            {
                "label": "Novelty Markets",
                "sport_id": 10
            },
            {
                "label": "Rugby Union",
                "sport_id": 11
            },
            {
                "label": "Racing",
                "sport_id": 12
            },
            {
                "label": "Boxing",
                "sport_id": 13
            },
            {
                "label": "Crypto",
                "sport_id": 14
            },
            {
                "label": "Cricket",
                "sport_id": 15
            },
            {
                "label": "Economics",
                "sport_id": 16
            },
            {
                "label": "Politics",
                "sport_id": 17
            },
            {
                "label": "Entertainment",
                "sport_id": 18
            },
            {
                "label": "Medicinal",
                "sport_id": 19
            },
            {
                "label": "Rugby League",
                "sport_id": 20
            },
            {
                "label": "Olympics",
                "sport_id": 21
            },
            {
                "label": "Athletics",
                "sport_id": 22
            },
            {
                "label": "NFTs",
                "sport_id": 23
            },
            {
                "label": "Horse Racing",
                "sport_id": 24
            },
            {
                "label": "Daily Parlays",
                "sport_id": 25
            },
            {
                "label": "Degen Crypto",
                "sport_id": 27
            },
            {
                "label": "InplayLIVE",
                "sport_id": 28
            },
            {
                "label": "Sailing",
                "sport_id": 29
            },
            {
                "label": "AFL",
                "sport_id": 26
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:48.319Z",
        "req
…