search_games
store.epicgames.comSearches the https://store.epicgames.com catalog by keyword and returns up to 20 relevant games with complete non-empty offer, price, promotion, release, and image metadata.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_games?
Searches the https://store.epicgames.com catalog by keyword and returns up to 20 relevant games with complete non-empty offer, price, promotion, release, and image metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, limit, locale, country, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"total": 0,
"locale": "<string>",
"source": "<string>",
"country": "<string>",
"keyword": "<string>",
"results": [
{}
],
"result_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/c8a95a35-2d32-439c-a9a1-7415ab824354/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c8a95a35-2d32-439c-a9a1-7415ab824354",
"variables": {
"keyword": "fortnite",
"limit": 20,
"locale": "en-US",
"country": "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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="c8a95a35-2d32-439c-a9a1-7415ab824354") — the "search_games" function, which searches the https://store.epicgames.com catalog by keyword and returns up to 20 relevant games with complete non-empty offer, price, promotion, release, and image metadata.. It takes keyword (str), limit (int), locale (str), country (str), timeout_seconds (int). Return the result as structured JSON.