Live
search_products
amazon.seSearches https://amazon.se product listings by keyword across pages and returns ASINs, prices, ratings, reviews, images, deal badges, and autocomplete suggestions.
Parameters3
Runs3
Updated6h ago
Operational3 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 search_products?
Searches https://amazon.se product listings by keyword across pages and returns ASINs, prices, ratings, reviews, images, deal badges, and autocomplete suggestions. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, limit and get the result back without maintaining a scraper.
Response
{
"query": "<string>",
"products": [
{
"asin": "<string>",
"price": "<string>",
"title": "<string>",
"rating": 0,
"discount": "<string>",
"image_url": "<string>",
"sponsored": true,
"deal_badges": [
"<string>"
],
"product_url": "<string>",
"review_count": 0,
"bought_recently": "<string>",
"reference_price": "<string>"
}
],
"next_page": 0,
"start_page": 0,
"suggestions": [
{
"type": "<string>",
"value": "<string>"
}
],
"pages_fetched": 0,
"product_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/f00601d4-ae51-49b4-86e2-0a8b831adde0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f00601d4-ae51-49b4-86e2-0a8b831adde0",
"variables": {
"query": "wireless headphones",
"page": 1,
"limit": 48
}
}'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="f00601d4-ae51-49b4-86e2-0a8b831adde0") — the "search_products" function, which searches https://amazon.se product listings by keyword across pages and returns ASINs, prices, ratings, reviews, images, deal badges, and autocomplete suggestions.. It takes query (str), page (int), limit (int). Return the result as structured JSON.