Skip to content
GET /v1/games

Browse & filter free-to-play games

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

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "sort": "default",
        "count": 50,
        "games": [
            {
                "id": 540,
                "genre": "Shooter",
                "title": "Overwatch",
                "game_url": "https://www.freetogame.com/open/overwatch",
                "platform": "PC (Windows)",
                "developer": "Blizzard Entertainment",
                "publisher": "Activision Blizzard",
                "thumbnail": "https://www.freetogame.com/g/540/thumbnail.jpg",
                "profile_url": "https://www.freetogame.com/overwatch",
                "release_date": "2022-10-04",
                "short_description": "A hero-focused first-person team shooter from Blizzard Entertainment."
            },
            {
                "id": 516,
                "genre": "Shooter",
                "title": "PUBG: BATTLEGROUNDS",
                "game_url": "https://www.freetogame.com/open/pubg",
                "platform": "PC (Windows)",
                "developer": "KRAFTON, Inc.",
                "publisher": "KRAFTON, Inc.",
                "thumbnail": "https://www.freetogame.com/g/516/thumbnail.jpg",
                "profile_url": "https://www.freetogame.com/pubg",
                "release_date": "2022-01-12",
                "short_description": "Get into the action in one of the longest running battle royale games PUBG Battlegrounds."
            },
            {
                "id": 508,
                "genre": "Shooter",
                "title": "Enlisted",
                "game_url": "https://www.freetogame.com/open/enlisted",
                "platform": "PC (Windows)",
                "developer": "Darkflow Software",
                "publisher": "Gaijin Entertainment",
                "thumbnail": "https://www.freetogame.com/g/508/thumbnail.jpg",
                "profile_url": "https://www.freetogame.com/enlisted",
                "release_date": "2021-04-08",
                "short_description": "Get ready to command your own World War II military squad in Gaijin and Darkflow Software’s MMO squad-based shooter Enlisted. "
            },
            {
                "id": 644,
                "genre": "Shooter",
                "title": "World of Tanks: HEAT",
                "game_url": "https://www.freetogame.com/open/world-of-tanks-heat",
                "platform": "PC (Windows)",
                "developer": "Wargaming Group Limited",
                "publisher": "Wargaming Group Limited",
                "thumbnail": "https://www.freetogame.com/g/644/thumbnail.jpg",
                "profile_url": "https://www.freetogame.com/world-of-tanks-heat",
                "release_date": "2026-05-26",
                "short_description": "A free-to-play hero-based shooter set in the World of Tanks universe."
            },
            {
                "id": 604,
                "genre": "Shooter",
                "title": "FragPunk",
                "game_url": "https://www.freetogame.com/open/fragpunk",
    
…