get_listing_images
item.taobao.comRetrieves the product title and all publicly available gallery image URLs from a https://item.taobao.com listing through Taobao’s international product page. It returns the main carousel images exposed without authentication.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_listing_images?
Retrieves the product title and all publicly available gallery image URLs from a https://item.taobao.com listing through Taobao’s international product page. It returns the main carousel images exposed without 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>"
],
"item_id": "<string>",
"source_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/0733a8d2-68b6-4404-a59c-2bb38b5c36e1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0733a8d2-68b6-4404-a59c-2bb38b5c36e1",
"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="0733a8d2-68b6-4404-a59c-2bb38b5c36e1") — the "get_listing_images" function, which retrieves the product title and all publicly available gallery image URLs from a https://item.taobao.com listing through Taobao’s international product page. It returns the main carousel images exposed without authentication.. It takes product_url (str). Return the result as structured JSON.