XPack

Taobao advanced

@XPack

Taobao advanced API offers two services. One is an advanced item detail API with product, seller, shipping, SKU, and video info. The other is an item search by image API that can find related items using an image URL, returning a JSON list of related items' basic info.

Taobao advanced

Taobao API’s for advanced use.

Item Detail #1

Description

Advanced Item Detail API that includes all the information about the product, information about the seller, shipping prices, SKU's description images, videos, etc.

Usage

  1. Endpoint: [Specify the actual endpoint URL]
  2. Request Method: [GET/POST etc., depending on the API]
  3. Request Parameters:
    • [List all the required parameters with their descriptions, e.g., item_id: The unique identifier of the item]
  4. Response:
    • The response will contain all the detailed information as described above. The data format could be JSON. For example:
    {
      "product_info": {
        "title": "Product Title",
        "description": "Product description",
        "price": "19.99"
      },
      "seller_info": {
        "seller_name": "Seller Name",
        "seller_rating": "4.5"
      },
      "shipping": {
        "price": "5.00",
        "delivery_time": "3 - 5 days"
      },
      "sku": [
        {
          "sku_id": "12345",
          "description": "Color: Red, Size: M",
          "image": "image_url_1.jpg"
        },
        {
          "sku_id": "67890",
          "description": "Color: Blue, Size: L",
          "image": "image_url_2.jpg"
        }
      ],
      "videos": [
        "video_url_1.mp4",
        "video_url_2.mp4"
      ]
    }
    

Item Search By Image【LOW LATENCY】

Description

With this API you will be able to get all related items to the image provided.

Usage

  1. Endpoint: [Specify the actual endpoint URL]
  2. Request Method: [GET/POST etc., depending on the API]
  3. Request Parameters:
    • image_url: The URL of the image for which related items are to be searched.
  4. Response:
    • The response will be a list of related items. Each item in the list may contain basic information such as item_id, title, price, etc. The data format could be JSON. For example:
    [
      {
        "item_id": "123456",
        "title": "Similar Product 1",
        "price": "24.99"
      },
      {
        "item_id": "789012",
        "title": "Similar Product 2",
        "price": "19.99"
      }
    ]
    
XPack MCP
{
  "mcpServers": {
    "taobao-advanced": {
      "type": "sse",
      "autoApprove":"all",
      "url": "https://mcp.xpack.ai/v1/mcp/taobao-advanced?authkey={Your-XPack-Auth-Key}"
    }
  }
}