get_bestsellers
amazon.aeRetrieves the top 30 best-selling products for a supported category from https://amazon.ae. Returns each product's rank, title, ASIN, price, image, product URL, rating, and rating count when Amazon.ae exposes them.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_bestsellers?
Retrieves the top 30 best-selling products for a supported category from https://amazon.ae. Returns each product's rank, title, ASIN, price, image, product URL, rating, and rating count when Amazon.ae exposes them. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category and get the result back without maintaining a scraper.
Response
{
"category": "<string>",
"products": [
{
"asin": "<string>",
"rank": 0,
"price": 0,
"title": "<string>",
"rating": 0,
"currency": "<string>",
"image_url": "<string>",
"product_url": "<string>",
"rating_count": 0
}
],
"category_slug": "<string>",
"product_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/b4714328-4471-41e3-833b-f7849e71b8be/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b4714328-4471-41e3-833b-f7849e71b8be",
"variables": {
"category": "electronics"
}
}'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="b4714328-4471-41e3-833b-f7849e71b8be") — the "get_bestsellers" function, which retrieves the top 30 best-selling products for a supported category from https://amazon.ae. Returns each product's rank, title, ASIN, price, image, product URL, rating, and rating count when Amazon.ae exposes them.. It takes category (str). Return the result as structured JSON.