Live
get_product_sku_variants
world.taobao.comReturns public SKU properties, variant combinations, per-variant pricing and stock when exposed, plus review-derived variant fallbacks from Taobao listings at https://item.taobao.com.
Parameters1
Runs4
Updated1d ago
Operational4 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_sku_variants?
Returns public SKU properties, variant combinations, per-variant pricing and stock when exposed, plus review-derived variant fallbacks from Taobao listings at https://item.taobao.com. 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>",
"item_id": "<string>",
"variants": [
{}
],
"properties": [
{}
],
"source_url": "<string>",
"listing_price": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/01fdd7f5-cdb6-48d4-8b89-33518953ef62/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "01fdd7f5-cdb6-48d4-8b89-33518953ef62",
"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.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="01fdd7f5-cdb6-48d4-8b89-33518953ef62") — the "get_product_sku_variants" function, which returns public SKU properties, variant combinations, per-variant pricing and stock when exposed, plus review-derived variant fallbacks from Taobao listings at https://item.taobao.com.. It takes product_url (str). Return the result as structured JSON.