Μετάβαση στο περιεχόμενο
GET /v1/meta

Service description & endpoints

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/nrl-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

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