Marketplace
No threads yet
Live

get_product_description

world.taobao.com

Returns the item title, SEO description text, and public product image URLs from Taobao listings at https://item.taobao.com through the international listing page.

Parameters1
Runs4
Updated1d ago
Operational4 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_product_description?

Returns the item title, SEO description text, and public product image URLs from Taobao listings at https://item.taobao.com through the international listing page. 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>"
  ],
  "item_id": "<string>",
  "source_url": "<string>",
  "description_text": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/1c3c74ca-e400-4042-bb33-86a687a18592/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "1c3c74ca-e400-4042-bb33-86a687a18592",
    "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="1c3c74ca-e400-4042-bb33-86a687a18592") — the "get_product_description" function, which returns the item title, SEO description text, and public product image URLs from Taobao listings at https://item.taobao.com through the international listing page..

It takes product_url (str). Return the result as structured JSON.