/v1/meta
Service description & endpoints
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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
}