Zum Inhalt springen
GET /v1/upcoming

Games becoming free on the Epic Games Store soon

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

Beispiel-Response

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

{
    "data": {
        "note": "Games becoming free on the Epic Games Store soon (free between free_start and free_end).",
        "count": 2,
        "games": [
            {
                "url": "https://store.epicgames.com/en-US/p/da528841e0eb43d8b93fd243c6767b0c",
                "slug": "da528841e0eb43d8b93fd243c6767b0c",
                "image": "https://cdn1.epicgames.com/spt-assets/919d5976f3804d4cabb8ca90ea43a956/citizen-sleeper-xudwg.jpg",
                "title": "Citizen Sleeper",
                "free_end": "2026-06-25T15:00:00.000Z",
                "publisher": "Surprise Attack Pty Ltd DBA Fellow Traveller Games",
                "free_start": "2026-06-18T15:00:00.000Z",
                "description": "Roleplaying in the ruins of interplanetary capitalism. Live the life of an escaped worker, washed-up on a lawless station at the edge of an interstellar society. Inspired by the flexibility and freedom of TTRPGs, choose your friends, escape your past and change your future.",
                "original_price": "$19.99"
            },
            {
                "url": "https://store.epicgames.com/en-US/p/4ee365fd76704f37ae3dc13676f1ac61",
                "slug": "4ee365fd76704f37ae3dc13676f1ac61",
                "image": "https://cdn1.epicgames.com/spt-assets/91105717b53044ed8e384e5fada71db8/robobeat-1ojda.png",
                "title": "ROBOBEAT",
                "free_end": "2026-06-25T15:00:00.000Z",
                "publisher": "Kwalee",
                "free_start": "2026-06-18T15:00:00.000Z",
                "description": "Keep your trigger finger on the pulse! In rhythm shooter ROBOBEAT, you'll play as Ace - a bounty hunter on a mission to capture robot-gone-rogue Frazzer. Wall run, slide, and shoot to your own beat using the in-game custom music editor, blasting through Frazzer's armies!",
                "original_price": "$19.99"
            }
        ],
        "source": "Epic Games Store",
        "country": "US"
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:40.258Z",
        "request_id": "05908f64-34c4-474a-8c36-485ae4e0bd3d"
    },
    "status": "ok",
    "message": "Upcoming free games retrieved successfully",
    "success": true
}