Zum Inhalt springen
GET /v1/standings

League table

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/cricketlive-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/cricketlive-api/v1/standings" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cricketlive-api/v1/standings", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cricketlive-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/cricketlive-api/v1/standings",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "groups": [
            {
                "name": "Table",
                "table": [
                    {
                        "won": 9,
                        "lost": 5,
                        "rank": 1,
                        "team": "Royal Challengers Bengaluru",
                        "played": 14,
                        "points": 18,
                        "team_id": "335970",
                        "runs_for": "2642/254.2",
                        "no_result": 0,
                        "qualified": true,
                        "net_run_rate": "0.783",
                        "runs_against": "2619/272.4"
                    },
                    {
                        "won": 9,
                        "lost": 5,
                        "rank": 2,
                        "team": "Gujarat Titans",
                        "played": 14,
                        "points": 18,
                        "team_id": "1298769",
                        "runs_for": "2558/270.4",
                        "no_result": 0,
                        "qualified": true,
                        "net_run_rate": "0.695",
                        "runs_against": "2434/278.0"
                    },
                    {
                        "won": 9,
                        "lost": 5,
                        "rank": 3,
                        "team": "Sunrisers Hyderabad",
                        "played": 14,
                        "points": 18,
                        "team_id": "628333",
                        "runs_for": "2854/276.1",
                        "no_result": 0,
                        "qualified": true,
                        "net_run_rate": "0.524",
                        "runs_against": "2675/272.4"
                    },
                    {
                        "won": 8,
                        "lost": 6,
                        "rank": 4,
                        "team": "Rajasthan Royals",
                        "played": 14,
                        "points": 16,
                        "team_id": "335977",
                        "runs_for": "2619/259.4",
                        "no_result": 0,
                        "qualified": true,
                        "net_run_rate": "0.189",
                        "runs_against": "2649/267.4"
                    },
                    {
                        "won": 7,
                        "lost": 6,
                        "rank": 5,
                        "team": "Punjab Kings",
                        "played": 14,
                        "points": 15,
                        "team_id": "335973",
                        "runs_for": "2711/250.0",
                        "no_result": 1,
                        "qualified": null,
                        "net_run_rate": "0.309",
                        "runs_against": "2718/258.0"
                    },
                    {
                        "won": 7,
                        "lost": 7,
     
…