/v1/standings
League standings
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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",
…