/v1/scoreboard
Matches with scores
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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"
},
…