Skip to content
GET /v1/game

A single game's detail

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/cfb-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/cfb-api/v1/game" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cfb-api/v1/game", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cfb-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/cfb-api/v1/game",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

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

{
    "data": {
        "game": {
            "id": "401628455",
            "name": "Akron Zips at Ohio State Buckeyes",
            "teams": [
                {
                    "id": "194",
                    "team": "Ohio State Buckeyes",
                    "score": "52",
                    "record": "1-0",
                    "winner": true,
                    "home_away": "home",
                    "linescores": [
                        "7",
                        "10",
                        "21",
                        "14"
                    ],
                    "abbreviation": "OSU"
                },
                {
                    "id": "2006",
                    "team": "Akron Zips",
                    "score": "6",
                    "record": "0-1",
                    "winner": false,
                    "home_away": "away",
                    "linescores": [
                        "3",
                        "0",
                        "3",
                        "0"
                    ],
                    "abbreviation": "AKR"
                }
            ],
            "venue": "Ohio Stadium",
            "status": "Final",
            "leaders": [
                {
                    "value": "17/28, 228 YDS, 3 TD",
                    "athlete": "Will Howard"
                },
                {
                    "value": "9/13, 68 YDS",
                    "athlete": "Tahj Bullock"
                }
            ],
            "completed": true
        }
    },
    "meta": {
        "timestamp": "2026-06-07T16:46:20.085Z",
        "request_id": "02bae133-67ad-4857-b9ad-1f5d9e47e971"
    },
    "status": "ok",
    "message": "Game retrieved successfully",
    "success": true
}