Aller au contenu
GET /v1/scoreboard

Matches with scores

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/nrl-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "count": 8,
        "league": "NRL",
        "season": "2026",
        "matches": [
            {
                "id": "603354",
                "date": "2026-06-04T09:50Z",
                "name": "Sea Eagles vs Rabbitohs",
                "state": "post",
                "teams": [
                    {
                        "id": "289196",
                        "name": "Sea Eagles",
                        "score": 28,
                        "halves": [
                            10,
                            28,
                            0,
                            0
                        ],
                        "record": "WLWWW",
                        "winner": true,
                        "home_away": "home",
                        "abbreviation": "MAN"
                    },
                    {
                        "id": "289205",
                        "name": "Rabbitohs",
                        "score": 14,
                        "halves": [
                            8,
                            14,
                            0,
                            0
                        ],
                        "record": "LLLWL",
                        "winner": false,
                        "home_away": "away",
                        "abbreviation": "SOU"
                    }
                ],
                "venue": "4 Pines Park",
                "detail": "Final",
                "status": "Final",
                "short_name": "MAN VS SOU"
            },
            {
                "id": "603355",
                "date": "2026-06-05T08:00Z",
                "name": "Storm vs Knights",
                "state": "post",
                "teams": [
                    {
                        "id": "289208",
                        "name": "Storm",
                        "score": 32,
                        "halves": [
                            14,
                            32,
                            0,
                            0
                        ],
                        "record": "WWLWW",
                        "winner": true,
                        "home_away": "home",
                        "abbreviation": "MEL"
                    },
                    {
                        "id": "289207",
                        "name": "Knights",
                        "score": 30,
                        "halves": [
                            12,
                            30,
                            0,
                            0
                        ],
                        "record": "LWWWW",
                        "winner": false,
                        "home_away": "away",
                        "abbreviation": "NEW"
                    }
                ],
                "venue": "AAMI Park",
                "detail": "Final",
                "status": "Final",
                "short_name": "MEL VS NEW"
            },
            
…