search_catalog
store.epicgames.comReturns filtered and sorted catalog pages from https://store.epicgames.com with complete non-empty offer records, offset pagination, and total count.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_catalog?
Returns filtered and sorted catalog pages from https://store.epicgames.com with complete non-empty offer records, offset pagination, and total count. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keywords, category, tag, free_only, on_sale_only, coming_soon, min_price, max_price, sort_by, sort_dir, start, count, namespace, item_namespace, release_date, effective_date, locale, country, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"start": 0,
"total": 0,
"locale": "<string>",
"source": "<string>",
"country": "<string>",
"results": [
{}
],
"has_more": true,
"page_count": 0,
"applied_filters": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/0efa0e1e-e83c-4a19-9c9f-244e84f09b39/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0efa0e1e-e83c-4a19-9c9f-244e84f09b39",
"variables": {
"keywords": "",
"category": "DEFAULT_CATEGORY",
"tag": "",
"free_only": false,
"on_sale_only": false,
"coming_soon": false,
"min_price": 0.0,
"max_price": 0.0,
"sort_by": "releaseDate",
"sort_dir": "DESC",
"start": 0,
"count": 40,
"namespace": "",
"item_namespace": "",
"release_date": "",
"effective_date": "",
"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="0efa0e1e-e83c-4a19-9c9f-244e84f09b39") — the "search_catalog" function, which returns filtered and sorted catalog pages from https://store.epicgames.com with complete non-empty offer records, offset pagination, and total count.. It takes keywords (str), category (str), tag (str), free_only (bool), on_sale_only (bool), coming_soon (bool), min_price (float), max_price (float), sort_by (str), sort_dir (str), start (int), count (int), namespace (str), item_namespace (str), release_date (str), effective_date (str), locale (str), country (str), timeout_seconds (int). Return the result as structured JSON.