search_discounted_catalog
store.epicgames.comBrowses discounted games from https://store.epicgames.com with filters, sorting, offset pagination, total count, and complete non-empty catalog records.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_discounted_catalog?
Browses discounted games from https://store.epicgames.com with filters, sorting, offset pagination, total count, and complete non-empty catalog records. 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, 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/abb9fd2e-6501-4b6b-a7e2-590688af8319/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "abb9fd2e-6501-4b6b-a7e2-590688af8319",
"variables": {
"keywords": "",
"category": "DEFAULT_CATEGORY",
"tag": "",
"free_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="abb9fd2e-6501-4b6b-a7e2-590688af8319") — the "search_discounted_catalog" function, which browses discounted games from https://store.epicgames.com with filters, sorting, offset pagination, total count, and complete non-empty catalog records.. It takes keywords (str), category (str), tag (str), free_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.