get_product_details
shop.appRetrieves full details for a single product from https://shop.app using product_id and product_slug. Returns current/original pricing, images, rating and review count, merchant info, and the complete non-empty product record.
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 full details for a single product from https://shop.app using product_id and product_slug. Returns current/original pricing, images, rating and review count, merchant info, and the complete non-empty product record. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_id, product_slug, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"images": [
{}
],
"rating": 0,
"product": {},
"merchant": {},
"product_id": "<string>",
"product_slug": "<string>",
"review_count": 0,
"current_price": {},
"original_price": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/eed9e160-053a-47e9-80db-e3245e49c6ab/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "eed9e160-053a-47e9-80db-e3245e49c6ab",
"variables": {
"product_id": "4131300606034",
"product_slug": "cookware-set",
"timeout_seconds": 35
}
}'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="eed9e160-053a-47e9-80db-e3245e49c6ab") — the "get_product_details" function, which retrieves full details for a single product from https://shop.app using product_id and product_slug. Returns current/original pricing, images, rating and review count, merchant info, and the complete non-empty product record.. It takes product_id (str), product_slug (str), timeout_seconds (int). Return the result as structured JSON.