/v1/game
Match box score: team stats + leaders
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/game" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/afl-api/v1/game", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/afl-api/v1/game");
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/game",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"game": {
"id": "1133595",
"date": "2026-06-07T09:20Z",
"teams": [
{
"id": "16",
"logo": "https://a.espncdn.com/i/teamlogos/afl/500/ess.png",
"name": "Essendon",
"score": 67,
"winner": false,
"quarters": [
15,
24,
7,
21
],
"home_away": "home",
"abbreviation": "ESS"
},
{
"id": "9",
"logo": "https://a.espncdn.com/i/teamlogos/afl/500/carl.png",
"name": "Carlton",
"score": 72,
"winner": true,
"quarters": [
8,
17,
21,
26
],
"home_away": "away",
"abbreviation": "CARL"
}
],
"venue": "MCG",
"detail": "Final",
"status": "Final"
},
"news": [
{
"link": "https://www.espn.com/afl/story/_/page/POINTSBET20241/afl-footy-review-news-analysis-round-13-stocks-nick-watson-north-melbourne-alastair-clarkson-jai-serong",
"headline": "Stocks up, stocks down: Wizard's great disappearing act; another huge captain's performance"
},
{
"link": "https://www.espn.com/video/clip/_/id/48994539/carlton-holds-essendon-make-four-straight",
"headline": "Carlton holds off Essendon to make it four straight"
},
{
"link": "https://www.espn.com/afl/story/_/id/47923681/coleman-medal-leaderboard-season-2026-kicked-most-goals-afl",
"headline": "Coleman Medal leaderboard for 2026 - who has kicked the most goals in the AFL?"
}
],
"leaders": [
{
"team": "ESS",
"leaders": [
{
"value": "2",
"player": "Ben McKay",
"category": "goals",
"player_id": "810",
"display_name": "Goals"
},
{
"value": "33",
"player": "Zach Merrett",
"category": "disposals",
"player_id": "459",
"display_name": "Disposals"
},
{
"value": "14",
"player": "Elijah Tsatas",
"category": "contestedPossessions",
"player_id": "13411",
…