Skip to content
GET /v1/scoreboard

Games with quarter-by-quarter scoring

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/afl-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "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
…