Zum Inhalt springen
GET /v1/free

Games currently free on the Epic Games Store

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/epicgames-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Games currently free to claim on the Epic Games Store (claim before free_end).",
        "count": 2,
        "games": [
            {
                "url": "https://store.epicgames.com/en-US/p/the-ouroboros-king",
                "slug": "the-ouroboros-king",
                "image": "https://cdn1.epicgames.com/spt-assets/33630d7105014582a478094e89953f49/the-ouroboros-king-jwabx.jpg",
                "title": "The Ouroboros King",
                "free_end": "2026-06-18T15:00:00.000Z",
                "publisher": "Plug In Digital SAS",
                "free_start": "2026-06-11T15:00:00.000Z",
                "description": "The Ouroboros King combines the strategic depth of chess with the build variety and replayability of roguelikes. Assemble a formidable army, discover powerful relics, and buy surprising gadgets to defeat the Coven.",
                "original_price": "$9.99"
            },
            {
                "url": "https://store.epicgames.com/en-US/p/b28e038bd68b4e80840e7fb8b747de54",
                "slug": "b28e038bd68b4e80840e7fb8b747de54",
                "image": "https://cdn1.epicgames.com/spt-assets/a1af14251fb748fc9bda63bfc260f933/warhammer-40k-speed-freeks-1k4pq.jpg",
                "title": "Warhammer 40K Speed Freeks",
                "free_end": "2026-06-18T15:00:00.000Z",
                "publisher": "Wired Productions",
                "free_start": "2026-06-11T15:00:00.000Z",
                "description": "High-octane combat racing in the Warhammer 40,000 universe.",
                "original_price": "$19.99"
            }
        ],
        "source": "Epic Games Store",
        "country": "US"
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:40.162Z",
        "request_id": "871a7567-b30b-4413-b18e-d6747bea6055"
    },
    "status": "ok",
    "message": "Free games retrieved successfully",
    "success": true
}