Vai al contenuto
GET /v1/game

A game full detail

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/freetogame-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}