get_product_details
shopee.co.idRetrieves full product details from https://shopee.co.id using item_id and shop_id, with fallback extraction from the product page when Shopee item/get is blocked by anti-bot 90309999. Also returns detailed shop profile data for the product's shop.
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 product details from https://shopee.co.id using item_id and shop_id, with fallback extraction from the product page when Shopee item/get is blocked by anti-bot 90309999. Also returns detailed shop profile data for the product's shop. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass item_id, shop_id, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"shop": {},
"source": "<string>",
"status": "<string>",
"item_id": 0,
"product": {},
"shop_id": 0,
"product_url": "<string>",
"pdp_sections": {},
"api_error_code": 0,
"api_error_message": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/ad3c60b8-dd83-46dd-83f1-df8cc230e9ff/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ad3c60b8-dd83-46dd-83f1-df8cc230e9ff",
"variables": {
"item_id": 57461418905,
"shop_id": 1545077706,
"timeout_seconds": 30
}
}'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="ad3c60b8-dd83-46dd-83f1-df8cc230e9ff") — the "get_product_details" function, which retrieves full product details from https://shopee.co.id using item_id and shop_id, with fallback extraction from the product page when Shopee item/get is blocked by anti-bot 90309999. Also returns detailed shop profile data for the product's shop.. It takes item_id (int), shop_id (int), timeout_seconds (int). Return the result as structured JSON.