Aller au contenu
GET /v1/meta

Service description & endpoints

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/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nrl-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nrl-api/v1/meta");
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/meta",
    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": {
        "service": "nrl-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/news": "NRL news.",
            "GET /v1/team": "Club detail by id (team=, e.g. 289195).",
            "GET /v1/match": "Match centre: team stats + line-ups (event=id from scoreboard).",
            "GET /v1/teams": "All NRL clubs.",
            "GET /v1/standings": "The NRL ladder.",
            "GET /v1/scoreboard": "Matches with scores (dates=YYYYMMDD optional)."
        },
        "description": "National Rugby League (NRL) live data: the scoreboard, the ladder (rank, points, wins/losses/draws, points and tries for/against, bonus points, streak), the 17 clubs and club detail, a full match centre with team stats and team line-ups (per-player tries, metres, tackles, line breaks, passes and goals), and news. Real live data, no key."
    },
    "meta": {
        "timestamp": "2026-06-08T01:19:59.749Z",
        "request_id": "1a67e4e3-34aa-4393-b452-7b038d87fefc"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}