Vai al contenuto
GET /v1/standings

League standings

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

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

{
    "data": {
        "count": 1,
        "conferences": [
            {
                "teams": [
                    {
                        "id": "8",
                        "team": "Minnesota Lynx",
                        "wins": "9.0",
                        "losses": "2.0",
                        "streak": "W7",
                        "win_percent": ".818",
                        "abbreviation": "MIN",
                        "games_behind": "-"
                    },
                    {
                        "id": "20",
                        "team": "Atlanta Dream",
                        "wins": "7.0",
                        "losses": "3.0",
                        "streak": "W1",
                        "win_percent": ".700",
                        "abbreviation": "ATL",
                        "games_behind": "1.5"
                    },
                    {
                        "id": "17",
                        "team": "Las Vegas Aces",
                        "wins": "7.0",
                        "losses": "3.0",
                        "streak": "W3",
                        "win_percent": ".700",
                        "abbreviation": "LV",
                        "games_behind": "1.5"
                    },
                    {
                        "id": "3",
                        "team": "Dallas Wings",
                        "wins": "7.0",
                        "losses": "3.0",
                        "streak": "W4",
                        "win_percent": ".700",
                        "abbreviation": "DAL",
                        "games_behind": "1.5"
                    },
                    {
                        "id": "9",
                        "team": "New York Liberty",
                        "wins": "7.0",
                        "losses": "4.0",
                        "streak": "W4",
                        "win_percent": ".636",
                        "abbreviation": "NY",
                        "games_behind": "2"
                    },
                    {
                        "id": "129689",
                        "team": "Golden State Valkyries",
                        "wins": "6.0",
                        "losses": "5.0",
                        "streak": "L2",
                        "win_percent": ".545",
                        "abbreviation": "GS",
                        "games_behind": "3"
                    },
                    {
                        "id": "131935",
                        "team": "Toronto Tempo",
                        "wins": "6.0",
                        "losses": "5.0",
                        "streak": "W1",
                        "win_percent": ".545",
                        "abbreviation": "TOR",
                        "games_behind": "3"
                    },
                    {
                        "id": "5",
                        "team": "Indiana Fever",
                        "wins": "5.0",
                
…