Marketplace
No threads yet
Live

get_coming_soon_games

store.epicgames.com

Returns only games labeled COMING SOON from the free games promotions on https://store.epicgames.com. Includes complete non-empty record fields for each game.

Parameters4
Runs9
Updated8d ago
Operational9 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_coming_soon_games?

Returns only games labeled COMING SOON from the free games promotions on https://store.epicgames.com. Includes complete non-empty record fields for each game. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass locale, country, allow_countries, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "games": [
    {}
  ],
  "locale": "<string>",
  "country": "<string>",
  "promotion": "<string>",
  "status_filter": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/0aa36004-d594-4cb3-a8d3-1ba23e6bc403/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "0aa36004-d594-4cb3-a8d3-1ba23e6bc403",
    "variables": {
        "locale": "en-US",
        "country": "US",
        "allow_countries": "US",
        "timeout_seconds": 20
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="0aa36004-d594-4cb3-a8d3-1ba23e6bc403") — the "get_coming_soon_games" function, which returns only games labeled COMING SOON from the free games promotions on https://store.epicgames.com. Includes complete non-empty record fields for each game..

It takes locale (str), country (str), allow_countries (str), timeout_seconds (int). Return the result as structured JSON.