Live
get_homepage_games
eldorado.comReturns trending games and popular offer categories from the Eldorado homepage, with per-category limits and marketplace ranking data. Reads https://eldorado.com.
Parameters2
Runs11
Updated10d ago
Operational11 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_homepage_games?
Returns trending games and popular offer categories from the Eldorado homepage, with per-category limits and marketplace ranking data. Reads https://eldorado.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit_per_category, locale and get the result back without maintaining a scraper.
Response
{
"popular_count": 0,
"popular_offers": [
{}
],
"trending_count": 0,
"trending_games": [
{}
],
"limit_per_category": 0,
"trending_sort_field": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/6b9dfb3a-b6b2-44f0-a634-c72b807b346c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "6b9dfb3a-b6b2-44f0-a634-c72b807b346c",
"variables": {
"limit_per_category": 20,
"locale": "en-US"
}
}'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="6b9dfb3a-b6b2-44f0-a634-c72b807b346c") — the "get_homepage_games" function, which returns trending games and popular offer categories from the Eldorado homepage, with per-category limits and marketplace ranking data. Reads https://eldorado.com.. It takes limit_per_category (int), locale (str). Return the result as structured JSON.