Vai al contenuto
GET /v1/scoreboard

Matches for a league

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

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

{
    "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
}