Aller au contenu
GET /v1/meta

Usage notes & filter values

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/freetogame-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "note": "A catalogue of free-to-play games from FreeToGame. /v1/games = browse and filter the F2P library by platform (pc, browser, all), by category/genre (mmorpg, shooter, strategy, moba, battle-royale, racing, card, and many more) and by sort order (release-date, popularity, alphabetical, relevance); each game carries its id, title, genre, platform, publisher and developer, release date, thumbnail, a short description and the play/profile URLs. /v1/game?id=452 = a single game's full detail — long description, status, screenshots and minimum system requirements (OS, processor, memory, graphics, storage). Filters are applied upstream and verified to narrow results. Data from FreeToGame (free to use). Ideal for game-discovery sites, F2P recommendation tools, gaming dashboards and Discord bots. All games listed are free to play.",
        "source": "FreeToGame — free-to-play games database (freetogame.com)",
        "filters": {
            "sort": [
                "release-date",
                "popularity",
                "alphabetical",
                "relevance"
            ],
            "category": [
                "mmorpg",
                "shooter",
                "strategy",
                "moba",
                "racing",
                "sports",
                "social",
                "sandbox",
                "open-world",
                "survival",
                "pvp",
                "pve",
                "pixel",
                "voxel",
                "zombie",
                "turn-based",
                "first-person",
                "third-person",
                "top-down",
                "tank",
                "space",
                "sailing",
                "side-scroller",
                "superhero",
                "permadeath",
                "card",
                "battle-royale",
                "mmo",
                "mmofps",
                "mmotps",
                "3d",
                "2d",
                "anime",
                "fantasy",
                "military",
                "martial-arts",
                "flight",
                "low-spec",
                "tower-defense",
                "horror",
                "mmorts"
            ],
            "platform": [
                "pc",
                "browser",
                "all"
            ]
        },
        "endpoints": [
            "/v1/games",
            "/v1/game",
            "/v1/meta"
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T16:23:39.499Z",
        "request_id": "f7132274-de9c-482c-83a1-047d231779b1"
    },
    "status": "ok",
    "message": "Meta retrieved",
    "success": true
}