get_listing_details
taobao.comRetrieves comprehensive product details from https://item.taobao.com through Taobao’s public international listing, including prices, images, review summary and preview, seller data, description, and public purchasing metadata. Variant, specification, and weight fields remain unavailable when Taobao requires authentication.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_listing_details?
Retrieves comprehensive product details from https://item.taobao.com through Taobao’s public international listing, including prices, images, review summary and preview, seller data, description, and public purchasing metadata. Variant, specification, and weight fields remain unavailable when Taobao requires authentication. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_url and get the result back without maintaining a scraper.
Response
{
"title": "<string>",
"images": [
"<string>"
],
"seller": {
"ratings": [
{
"name": "<string>",
"level": "<string>",
"score": "<string>",
"rating_type": "<string>"
}
],
"shop_id": "<string>",
"shop_url": "<string>",
"opened_at": "<string>",
"seller_id": "<string>",
"shop_name": "<string>",
"item_count": 0,
"seller_name": "<string>",
"seller_type": "<string>",
"credit_level": "<string>",
"shop_icon_url": "<string>"
},
"item_id": "<string>",
"pricing": {
"remark": "<string>",
"currency": "<string>",
"original_price": "<string>",
"has_range_price": true,
"promotion_price": "<string>"
},
"reviews": {
"previews": [
{
"score": "<string>",
"content": "<string>",
"sku_info": "<string>",
"date_time": "<string>",
"user_name": "<string>",
"user_image_url": "<string>"
}
],
"bad_count": "<string>",
"good_count": "<string>",
"review_count": "<string>",
"average_rating": 0,
"bad_percentage": "<string>",
"good_percentage": "<string>",
"has_more_reviews": true,
"neutral_percentage": "<string>"
},
"location": "<string>",
"variants": [
{
"price": "<string>",
"sku_id": "<string>",
"options": {},
"image_url": "<string>"
}
],
"item_type": "<string>",
"source_url": "<string>",
"breadcrumbs": [
{
"url": "<string>",
"name": "<string>"
}
],
"category_id": "<string>",
"description": {
"keywords": "<string>",
"meta_copy": "<string>",
"meta_title": "<string>",
"gallery_images": [
"<string>"
]
},
"area_limited": true,
"free_shipping": true,
"specifications": [
{
"name": "<string>",
"value": "<string>"
}
],
"payment_methods": [
{
"name": "<string>",
"logo_url": "<string>"
}
],
"root_category_id": "<string>",
"service_image_url": "<string>",
"sellable_languages": [
"<string>"
],
"weight_specification": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/fe57ba34-7fdd-4821-bf52-5fe344a376ca/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "fe57ba34-7fdd-4821-bf52-5fe344a376ca",
"variables": {
"product_url": "https://item.taobao.com/item.htm?id=948892581504"
}
}'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="fe57ba34-7fdd-4821-bf52-5fe344a376ca") — the "get_listing_details" function, which retrieves comprehensive product details from https://item.taobao.com through Taobao’s public international listing, including prices, images, review summary and preview, seller data, description, and public purchasing metadata. Variant, specification, and weight fields remain unavailable when Taobao requires authentication.. It takes product_url (str). Return the result as structured JSON.