/v1/scoreboard
Matches for a league
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/cricketlive-api/v1/scoreboard" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cricketlive-api/v1/scoreboard", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cricketlive-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/cricketlive-api/v1/scoreboard",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"count": 1,
"league": "Indian Premier League",
"matches": [
{
"id": "1535465",
"date": "2026-05-31T14:00Z",
"name": "Royal Challengers Bengaluru v Gujarat Titans",
"teams": [
{
"id": "335970",
"name": "Royal Challengers Bengaluru",
"score": "161/5 (18/20 ov, target 156)",
"winner": false,
"innings": [
{
"runs": 1,
"overs": 20,
"wickets": 0
},
{
"runs": 2,
"overs": 18,
"wickets": 5
}
],
"home_away": "home",
"abbreviation": "RCB"
},
{
"id": "1298769",
"name": "Gujarat Titans",
"score": "155/8",
"winner": false,
"innings": [
{
"runs": 1,
"overs": 20,
"wickets": 8
},
{
"runs": 2,
"overs": 18,
"wickets": 0
}
],
"home_away": "away",
"abbreviation": "GT"
}
],
"venue": "Narendra Modi Stadium, Motera, Ahmedabad",
"detail": "Final",
"status": "Result",
"short_name": "RCB v GT"
}
],
"league_id": "8048"
},
"meta": {
"timestamp": "2026-06-08T01:20:03.193Z",
"request_id": "4c72897c-9fdc-4b8b-918c-ed9a14bacd8f"
},
"status": "ok",
"message": "Scoreboard retrieved successfully",
"success": true
}