get_product_reviews
backmarket.comReturns up to 7 top customer reviews for a Back Market product from structured page data, including aggregate rating and total review count when available. Reads data from https://backmarket.fr.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_product_reviews?
Returns up to 7 top customer reviews for a Back Market product from structured page data, including aggregate rating and total review count when available. Reads data from https://backmarket.fr. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_uuid, product_slug, max_reviews, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"top_reviews": [
{}
],
"product_slug": "<string>",
"product_uuid": "<string>",
"product_title": "<string>",
"reviews_source": "<string>",
"aggregate_rating": 0,
"aggregate_source": "<string>",
"total_review_count": 0,
"available_review_records": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/c33b9f58-a5ae-4f93-a9b9-00d0a42454ef/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c33b9f58-a5ae-4f93-a9b9-00d0a42454ef",
"variables": {
"product_uuid": "6dc9bbf3-2b3e-46f2-a8c3-87030491eaa2",
"product_slug": "dysontm-v15-detecttm-absolute-argent",
"max_reviews": 7,
"timeout_seconds": 25
}
}'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="c33b9f58-a5ae-4f93-a9b9-00d0a42454ef") — the "get_product_reviews" function, which returns up to 7 top customer reviews for a Back Market product from structured page data, including aggregate rating and total review count when available. Reads data from https://backmarket.fr.. It takes product_uuid (str), product_slug (str), max_reviews (int), timeout_seconds (int). Return the result as structured JSON.