Marketplace
No threads yet
Live

get_homepage_carousel

store-site-backend-static-ipv4.ak.epicgames.com

Returns hero and featured carousel promotions from https://store.epicgames.com with games, sales, taglines, badges, media, links, and offer identifiers.

Parameters4
Runs5
Updated3d ago
Operational5 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_homepage_carousel?

Returns hero and featured carousel promotions from https://store.epicgames.com with games, sales, taglines, badges, media, links, and offer identifiers. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass locale, country, include_takeover, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "site": "<string>",
  "count": 0,
  "items": [
    {}
  ],
  "locale": "<string>",
  "country": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f53300e0-517f-4251-9442-b3b215dba55f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f53300e0-517f-4251-9442-b3b215dba55f",
    "variables": {
        "locale": "en-US",
        "country": "US",
        "include_takeover": true,
        "timeout_seconds": 25
    }
}'

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="f53300e0-517f-4251-9442-b3b215dba55f") — the "get_homepage_carousel" function, which returns hero and featured carousel promotions from https://store.epicgames.com with games, sales, taglines, badges, media, links, and offer identifiers..

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