Live
get_product_details
itsybitsy.inRetrieves complete product details from https://itsybitsy.in by handle, including variants, pricing, specifications, Judge.me reviews, and frequently bought-together recommendations.
Parameters1
Runs11
Updated10d ago
Operational11 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 get_product_details?
Retrieves complete product details from https://itsybitsy.in by handle, including variants, pricing, specifications, Judge.me reviews, and frequently bought-together recommendations. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass handle and get the result back without maintaining a scraper.
Response
{
"product": {},
"reviews": [
{}
],
"description": "<string>",
"review_count": 0,
"average_rating": 0,
"specifications": [
"<string>"
],
"recommendation_title": "<string>",
"recommendation_currency": "<string>",
"frequently_bought_together": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/69b2829c-5745-4525-952e-51b394f09b78/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "69b2829c-5745-4525-952e-51b394f09b78",
"variables": {
"handle": "home-decor-chak-paint-20-ml"
}
}'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="69b2829c-5745-4525-952e-51b394f09b78") — the "get_product_details" function, which retrieves complete product details from https://itsybitsy.in by handle, including variants, pricing, specifications, Judge.me reviews, and frequently bought-together recommendations.. It takes handle (str). Return the result as structured JSON.