search_renewed_listings
amazon.seSearches only Renewed listings on https://amazon.se across multiple pages and returns priced refurbished products with RRP, ratings, reviews, Prime eligibility, delivery, availability, and images.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_renewed_listings?
Searches only Renewed listings on https://amazon.se across multiple pages and returns priced refurbished products with RRP, ratings, reviews, Prime eligibility, delivery, availability, and images. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, max_pages and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"results": [
{}
],
"has_more": true,
"condition": "<string>",
"pages_fetched": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/6b942db5-e30c-4848-85b0-325aef853f63/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "6b942db5-e30c-4848-85b0-325aef853f63",
"variables": {
"query": "iphone",
"max_pages": 2
}
}'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="6b942db5-e30c-4848-85b0-325aef853f63") — the "search_renewed_listings" function, which searches only Renewed listings on https://amazon.se across multiple pages and returns priced refurbished products with RRP, ratings, reviews, Prime eligibility, delivery, availability, and images.. It takes query (str), max_pages (int). Return the result as structured JSON.