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/gamerpower-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/gamerpower-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gamerpower-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gamerpower-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/gamerpower-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": "Currently-active, limited-time giveaways of free games, DLC, in-game loot and beta keys from GamerPower. /v1/giveaways = the live giveaways, filterable by platform (steam, epic-games-store, gog, ps5, xbox-series-xs, switch, android, ios, …), by type (game, loot, beta) and sort order (date, value, popularity) — each with its id, title, retail worth, type, platforms, end date, claim URL, image and how many users have claimed it; /v1/giveaway?id=3664 = a single giveaway's full detail with description and claim instructions (returns found:false when that giveaway has expired, since giveaways are time-limited); /v1/worth = the number of active giveaways and their total estimated USD value (optionally filtered by platform/type). Distinct from game catalogues and price/deal feeds — these are 'claim it free before it expires' offers. Data from GamerPower (free to use). Ideal for deal-alert bots, gaming-news sites and 'free games this week' widgets.",
        "source": "GamerPower — game giveaways & loot (gamerpower.com)",
        "filters": {
            "sort": [
                "date",
                "value",
                "popularity"
            ],
            "type": [
                "game",
                "loot",
                "beta"
            ],
            "platform": [
                "pc",
                "steam",
                "epic-games-store",
                "ubisoft",
                "gog",
                "itchio",
                "ps4",
                "ps5",
                "xbox-one",
                "xbox-series-xs",
                "switch",
                "android",
                "ios",
                "vr",
                "battlenet",
                "origin",
                "drm-free",
                "xbox-360"
            ]
        },
        "endpoints": [
            "/v1/giveaways",
            "/v1/giveaway",
            "/v1/worth",
            "/v1/meta"
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T16:23:39.049Z",
        "request_id": "b538071a-914c-499a-a40d-a268ce9b44ee"
    },
    "status": "ok",
    "message": "Meta retrieved",
    "success": true
}