/v1/scoreboard
Games & scores
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/scoreboard" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wnba-api/v1/scoreboard", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wnba-api/v1/scoreboard");
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/scoreboard",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 2,
"games": [
{
"id": "401856970",
"away": {
"id": "19",
"logo": "https://a.espncdn.com/i/teamlogos/wnba/500/chi.png",
"team": "Chicago Sky",
"score": "68",
"record": "4-7",
"winner": false,
"home_away": "away",
"abbreviation": "CHI"
},
"date": "2026-06-07T19:00Z",
"home": {
"id": "131935",
"logo": "https://a.espncdn.com/i/teamlogos/wnba/500/tor.png",
"team": "Toronto Tempo",
"score": "85",
"record": "6-5",
"winner": true,
"home_away": "home",
"abbreviation": "TOR"
},
"name": "Chicago Sky at Toronto Tempo",
"clock": "0.0",
"venue": "Coca-Cola Coliseum",
"period": 4,
"status": "Final",
"broadcast": "WNBA League Pass",
"completed": true,
"short_name": "CHI @ TOR",
"season_type": 2
},
{
"id": "401856971",
"away": {
"id": "132052",
"logo": "https://a.espncdn.com/i/teamlogos/wnba/500/scoreboard/por.png",
"team": "Portland Fire",
"score": "72",
"record": "6-7",
"winner": false,
"home_away": "away",
"abbreviation": "POR"
},
"date": "2026-06-07T23:00Z",
"home": {
"id": "6",
"logo": "https://a.espncdn.com/i/teamlogos/wnba/500/la.png",
"team": "Los Angeles Sparks",
"score": "89",
"record": "5-6",
"winner": true,
"home_away": "home",
"abbreviation": "LA"
},
"name": "Portland Fire at Los Angeles Sparks",
"clock": "0.0",
"venue": "crypto.com Arena",
"period": 4,
"status": "Final",
"broadcast": "NBA TV",
"completed": true,
"short_name": "POR @ LA",
"season_type": 2
}
]
},
"meta": {
"timestamp": "2026-06-08T01:20:07.485Z",
"request_id": "70ca63ae-e0b3-4b5d-b8d9-e7a6fe58e210"
},
"status": "ok",
"message": "Scoreboard retrieved successfully",
"success": true
}