get_ae_active_deals
amazon.aeRetrieves currently active products on promotion from the Today's Deals page at https://amazon.ae. Returns each active deal with current price and available product fields exposed by Amazon.ae.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_ae_active_deals?
Retrieves currently active products on promotion from the Today's Deals page at https://amazon.ae. Returns each active deal with current price and available product fields exposed by Amazon.ae. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.
Response
{
"products": [
{}
],
"deal_count": 0,
"source_url": "<string>",
"retrieved_at_utc": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/b22c19a3-5617-4814-a680-c5d945684296/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b22c19a3-5617-4814-a680-c5d945684296",
"variables": {}
}'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="b22c19a3-5617-4814-a680-c5d945684296") — the "get_ae_active_deals" function, which retrieves currently active products on promotion from the Today's Deals page at https://amazon.ae. Returns each active deal with current price and available product fields exposed by Amazon.ae.. It takes no parameters. Return the result as structured JSON.