Live
get_featured_deals
ebay.caFetches current featured and trending deals from https://ebay.ca/deals. Returns live deal records with item pricing, thumbnails, and related listing fields from eBay Canada.
Parameters2
Runs8
Updated8d ago
Operational8 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_featured_deals?
Fetches current featured and trending deals from https://ebay.ca/deals. Returns live deal records with item pricing, thumbnails, and related listing fields from eBay Canada. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"deals": [
{}
],
"source_url": "<string>",
"module_title": "<string>",
"returned_deals": 0,
"total_deals_available": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/c8ebd8cd-99d6-4352-adaa-aff90f107d49/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c8ebd8cd-99d6-4352-adaa-aff90f107d49",
"variables": {
"limit": 20,
"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.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="c8ebd8cd-99d6-4352-adaa-aff90f107d49") — the "get_featured_deals" function, which fetches current featured and trending deals from https://ebay.ca/deals. Returns live deal records with item pricing, thumbnails, and related listing fields from eBay Canada.. It takes limit (int), timeout_seconds (int). Return the result as structured JSON.