/v1/standings
The NRL ladder
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/standings" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nrl-api/v1/standings", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nrl-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/nrl-api/v1/standings",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 17,
"group": "Round-Robin",
"ladder": [
{
"bye": 1,
"won": 12,
"lost": 1,
"rank": 1,
"seed": 1,
"team": "Panthers",
"drawn": 0,
"played": 13,
"points": 26,
"streak": "-",
"team_id": "289199",
"tries_for": 76,
"points_for": 437,
"bonus_points": 0,
"tries_against": 29,
"points_against": 164,
"tries_difference": "47",
"points_difference": "+273"
},
{
"bye": 2,
"won": 9,
"lost": 3,
"rank": 2,
"seed": 2,
"team": "Warriors",
"drawn": 0,
"played": 12,
"points": 22,
"streak": "-",
"team_id": "289201",
"tries_for": 64,
"points_for": 368,
"bonus_points": 0,
"tries_against": 38,
"points_against": 214,
"tries_difference": "26",
"points_difference": "+154"
},
{
"bye": 2,
"won": 8,
"lost": 4,
"rank": 3,
"seed": 3,
"team": "Roosters",
"drawn": 0,
"played": 12,
"points": 20,
"streak": "-",
"team_id": "289204",
"tries_for": 58,
"points_for": 323,
"bonus_points": 0,
"tries_against": 43,
"points_against": 250,
"tries_difference": "15",
"points_difference": "+73"
},
{
"bye": 1,
"won": 8,
"lost": 5,
"rank": 4,
"seed": 4,
"team": "Sea Eagles",
"drawn": 0,
"played": 13,
"points": 18,
"streak": "-",
"team_id": "289196",
"tries_for": 63,
"points_for": 367,
"bonus_points": 0,
"tries_against": 43,
"points_against": 250,
"tries_difference": "20",
"points_difference": "+117"
},
{
"bye": 2,
"won": 7,
"lost": 5,
"rank": 5,
"seed": 5,
"team": "Dolphins",
"drawn": 0,
"played": 12,
"points": 18,
"streak": "-",
"team_id": "289346",
"tries_for": 56,
"points_for": 330,
"bonus_poi
…