Naar de inhoud
GET /v1/game

A game full detail

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/freetogame-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "game": {
            "id": 452,
            "genre": "Shooter",
            "title": "Call of Duty: Warzone",
            "status": "Live",
            "game_url": "https://www.freetogame.com/open/call-of-duty-warzone",
            "platform": "Windows",
            "developer": "Infinity Ward",
            "publisher": "Activision",
            "thumbnail": "https://www.freetogame.com/g/452/thumbnail.jpg",
            "description": "Call of Duty: Warzone is both a standalone free-to-play battle royale and modes accessible via Call of Duty: Modern Warfare. Warzone features two modes — the general 150-player battle royle, and “Plunder”. The latter mode is described as a “race to deposit the most Cash”. In both modes players can both earn and loot cash to be used when purchasing in-match equipment, field upgrades, and more. Both cash and XP are earned in a variety of ways, including completing contracts. An interesting feature of the game is one that allows players who have been killed in a match to rejoin it by winning a 1v1 match against other felled players in the Gulag. Of course, being a battle royale, the game does offer a battle pass. The pass offers players new weapons, playable characters, Call of Duty points, blueprints, and more. Players can also earn plenty of new items by completing objectives offered with the pass.",
            "profile_url": "https://www.freetogame.com/call-of-duty-warzone",
            "screenshots": [
                "https://www.freetogame.com/g/452/Call-of-Duty-Warzone-1.jpg",
                "https://www.freetogame.com/g/452/Call-of-Duty-Warzone-2.jpg",
                "https://www.freetogame.com/g/452/Call-of-Duty-Warzone-3.jpg",
                "https://www.freetogame.com/g/452/Call-of-Duty-Warzone-4.jpg"
            ],
            "release_date": "2020-03-10",
            "short_description": "A standalone free-to-play battle royale and modes accessible via Call of Duty: Modern Warfare.",
            "minimum_system_requirements": {
                "os": "Windows 7 64-Bit (SP1) or Windows 10 64-Bit",
                "memory": "8GB RAM",
                "storage": "175GB HD space",
                "graphics": "NVIDIA GeForce GTX 670 / GeForce GTX 1650 or Radeon HD 7950",
                "processor": "Intel Core i3-4340 or AMD FX-6300"
            }
        }
    },
    "meta": {
        "timestamp": "2026-06-01T16:23:39.291Z",
        "request_id": "a68b0b09-aefb-412f-92e9-92f333b353e3"
    },
    "status": "ok",
    "message": "Game retrieved",
    "success": true
}