Marketplace
No threads yet
Live

get_free_promotion_games

store.epicgames.com

Returns all currently free and upcoming free games from the weekly promotions page on https://store.epicgames.com. Each game includes complete non-empty catalog data, FREE NOW or COMING SOON status, and the promotional date range.

Parameters3
Runs12
Updated10d ago
Operational12 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_free_promotion_games?

Returns all currently free and upcoming free games from the weekly promotions page on https://store.epicgames.com. Each game includes complete non-empty catalog data, FREE NOW or COMING SOON status, and the promotional date range. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass locale, country, status_filter and get the result back without maintaining a scraper.

Response

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

Call it

curl --location 'https://us-prod.notte.cc/functions/9e66e340-72be-4ce6-8f70-522abc5b9645/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "9e66e340-72be-4ce6-8f70-522abc5b9645",
    "variables": {
        "locale": "en-US",
        "country": "US",
        "status_filter": "ALL"
    }
}'

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="9e66e340-72be-4ce6-8f70-522abc5b9645") — the "get_free_promotion_games" function, which returns all currently free and upcoming free games from the weekly promotions page on https://store.epicgames.com. Each game includes complete non-empty catalog data, FREE NOW or COMING SOON status, and the promotional date range..

It takes locale (str), country (str), status_filter (str). Return the result as structured JSON.