get_currency_seller_offers
eldorado.comReturns one paginated page of in-game currency seller offers from https://eldorado.com with optional te0/te1/te2 trade environment filters. Uses Eldorado game metadata to expose valid trade environment values and returns full non-empty offer records.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_currency_seller_offers?
Returns one paginated page of in-game currency seller offers from https://eldorado.com with optional te0/te1/te2 trade environment filters. Uses Eldorado game metadata to expose valid trade environment values and returns full non-empty offer records. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass game_id, page, te0, te1, te2, offer_sorting, locale, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"offers": [
{}
],
"game_id": "<string>",
"category": "<string>",
"game_name": "<string>",
"page_size": 0,
"seo_alias": "<string>",
"default_te0": "<string>",
"default_te1": "<string>",
"default_te2": "<string>",
"total_pages": 0,
"selected_te0": "<string>",
"selected_te1": "<string>",
"selected_te2": "<string>",
"available_te0": [
"<string>"
],
"available_te1": [
"<string>"
],
"available_te2": [
"<string>"
],
"offer_sorting": "<string>",
"total_records": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/d1585b60-1dac-4db0-af86-89a2b1fe1d8e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d1585b60-1dac-4db0-af86-89a2b1fe1d8e",
"variables": {
"game_id": "0",
"page": 1,
"te0": "",
"te1": "",
"te2": "",
"offer_sorting": "Recommended",
"locale": "en-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="d1585b60-1dac-4db0-af86-89a2b1fe1d8e") — the "get_currency_seller_offers" function, which returns one paginated page of in-game currency seller offers from https://eldorado.com with optional te0/te1/te2 trade environment filters. Uses Eldorado game metadata to expose valid trade environment values and returns full non-empty offer records.. It takes game_id (str), page (int), te0 (str), te1 (str), te2 (str), offer_sorting (str), locale (str), timeout_seconds (int). Return the result as structured JSON.