/v1/scoreboard
Tournaments & live matches
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/tennislive-api/v1/scoreboard" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tennislive-api/v1/scoreboard", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tennislive-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/tennislive-api/v1/scoreboard",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"tour": "atp",
"count": 3,
"tournaments": [
{
"id": "172-2026",
"date": "2026-05-18T04:00Z",
"name": "Roland Garros",
"status": "Final",
"matches": [],
"match_count": 0
},
{
"id": "49-2026",
"date": "2026-06-06T04:00Z",
"name": "Boss Open",
"status": "Final",
"matches": [],
"match_count": 0
},
{
"id": "415-2026",
"date": "2026-06-06T04:00Z",
"name": "Libéma Open",
"status": "Final",
"matches": [],
"match_count": 0
}
]
},
"meta": {
"timestamp": "2026-06-08T01:20:05.071Z",
"request_id": "bfb0e9aa-b98d-4a73-80d4-f14a6a2b5abf"
},
"status": "ok",
"message": "Scoreboard retrieved successfully",
"success": true
}