get_product_details
backmarket.frRetrieves comprehensive refurbished product details from https://backmarket.fr by product UUID, including pricing, specifications, images, variants, availability, seller offer data, and review summary.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_product_details?
Retrieves comprehensive refurbished product details from https://backmarket.fr by product UUID, including pricing, specifications, images, variants, availability, seller offer data, and review summary. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_uuid and get the result back without maintaining a scraper.
Response
{
"brand": "<string>",
"model": "<string>",
"title": "<string>",
"images": [
{}
],
"pricing": {},
"product": {},
"variants": [
{}
],
"product_url": "<string>",
"availability": {},
"product_uuid": "<string>",
"selected_offer": {},
"specifications": {},
"reviews_summary": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/f6cea8e8-0af8-409e-ae6e-3ef0a1969726/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f6cea8e8-0af8-409e-ae6e-3ef0a1969726",
"variables": {
"product_uuid": "514537ae-1ee4-4353-adf3-4b5bc0896e79"
}
}'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="f6cea8e8-0af8-409e-ae6e-3ef0a1969726") — the "get_product_details" function, which retrieves comprehensive refurbished product details from https://backmarket.fr by product UUID, including pricing, specifications, images, variants, availability, seller offer data, and review summary.. It takes product_uuid (str). Return the result as structured JSON.