Marketplace
No threads yet
Live

get_product_image_urls

temu.com

Returns all available regional product image URLs from https://temu.com for up to 40 numeric product IDs, with one comma-separated URL string per product.

Parameters2
Runs5
Updated3d ago
Operational5 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_image_urls?

Returns all available regional product image URLs from https://temu.com for up to 40 numeric product IDs, with one comma-separated URL string per product. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_ids, locale and get the result back without maintaining a scraper.

Response

{
  "locale": "<string>",
  "products": [
    {
      "error": "<string>",
      "status": "<string>",
      "image_urls": "<string>",
      "product_id": "<string>",
      "image_count": 0
    }
  ],
  "found_count": 0,
  "requested_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c731a6a3-a05a-4a39-8e0c-06a7e9d5921c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c731a6a3-a05a-4a39-8e0c-06a7e9d5921c",
    "variables": {
        "product_ids": ["601099955392892", "601104955070273"],
        "locale": "en-US"
    }
}'

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="c731a6a3-a05a-4a39-8e0c-06a7e9d5921c") — the "get_product_image_urls" function, which returns all available regional product image URLs from https://temu.com for up to 40 numeric product IDs, with one comma-separated URL string per product..

It takes product_ids (list[str]), locale (str). Return the result as structured JSON.