list_top_new_releases
store-site-backend-static-ipv4.ak.epicgames.comReturns games curated in the Top New Releases homepage section from https://store.epicgames.com with complete non-empty offer, price, release, seller, media, and mapping data.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_top_new_releases?
Returns games curated in the Top New Releases homepage section from https://store.epicgames.com with complete non-empty offer, price, release, seller, media, and mapping data. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass locale, country, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"count": 0,
"games": [
{}
],
"locale": "<string>",
"source": "<string>",
"country": "<string>",
"section": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/bc788c88-92cd-4f4a-a55c-388ce1237cc7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "bc788c88-92cd-4f4a-a55c-388ce1237cc7",
"variables": {
"locale": "en-US",
"country": "US",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="bc788c88-92cd-4f4a-a55c-388ce1237cc7") — the "list_top_new_releases" function, which returns games curated in the Top New Releases homepage section from https://store.epicgames.com with complete non-empty offer, price, release, seller, media, and mapping data.. It takes locale (str), country (str), timeout_seconds (int). Return the result as structured JSON.