/v1/scoreboard
Games with quarter-by-quarter scoring
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/afl-api/v1/scoreboard" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/afl-api/v1/scoreboard", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/afl-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/afl-api/v1/scoreboard",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"count": 8,
"games": [
{
"id": "1133595",
"date": "2026-06-07T09:20Z",
"name": "Carlton at Essendon",
"state": "post",
"teams": [
{
"id": "16",
"name": "Essendon",
"score": 67,
"record": "1-12",
"winner": false,
"quarters": [
15,
24,
7,
21
],
"home_away": "home",
"abbreviation": "ESS"
},
{
"id": "9",
"name": "Carlton",
"score": 72,
"record": "5-8",
"winner": true,
"quarters": [
8,
17,
21,
26
],
"home_away": "away",
"abbreviation": "CARL"
}
],
"venue": "MCG",
"detail": "Final",
"status": "Final",
"short_name": "CARL @ ESS"
},
{
"id": "1133596",
"date": "2026-06-08T05:15Z",
"name": "Melbourne at Collingwood",
"state": "pre",
"teams": [
{
"id": "17",
"name": "Collingwood",
"score": 0,
"record": "5-1-6",
"winner": false,
"quarters": [],
"home_away": "home",
"abbreviation": "COLL"
},
{
"id": "2",
"name": "Melbourne",
"score": 0,
"record": "7-5",
"winner": false,
"quarters": [],
"home_away": "away",
"abbreviation": "MELB"
}
],
"venue": "MCG",
"detail": "Sun, June 7th at 10:15 PM EDT",
"status": "Scheduled",
"short_name": "MELB @ COLL"
},
{
"id": "1133589",
"date": "2026-06-04T09:30Z",
"name": "Geelong Cats at Adelaide Crows",
"state": "post",
"teams": [
{
"id": "15",
"name": "Adelaide Crows",
"score": 7
…