Skip to content

Taobao & Tmall APIs - Shop Product List (V2)

prod-global
GET
/api/taobao/get-shop-item-list/v2

Retrieves a paginated list of products under a Taobao/Tmall shop, including basic product metadata (e.g., item ID, title, price, images when available) and listing status.

Typical use cases:

  • Monitoring a shop's assortment and new/removed products
  • Building shop-level catalogs and scheduled collection pipelines
  • Competitor shop tracking and e-commerce analytics

Highlights

  • An empty product list may mean either: the shop has no products, or the shop is not supported by this endpoint. If the list is empty, verify with another shop or use an alternative endpoint if available.

Parameters

NameInTypeRequiredDescription
tokenquerystringYesAccess token for this API service.
userIdquerystringYesShop identifier. Also known as Seller ID or User ID (they refer to the same value).
shopIdquerystringYesUnique shop identifier on Taobao/Tmall (shop ID).
sortquerystringNoSort order for the result set.

Available Values:
- coefp: Comprehensive sorting
- hotsell: Hot selling / Sales volume
- oldstarts: New arrivals / Old starts
- bid: Price: Low to High
- _bid: Price: High to Low
pagequeryintegerNoPage number for pagination.

Code Samples

💡 Environment Note

Default samples use https://api.justoneapi.com (prod-global). For users in Mainland China, it is recommended to replace it with http://47.117.133.51:30015 (prod-cn) for better performance. See Environment Guide.

bash
# Tip: For Mainland China, replace https://api.justoneapi.com with http://47.117.133.51:30015
curl -X GET "https://api.justoneapi.com/api/taobao/get-shop-item-list/v2?token=YOUR_API_KEY&userId=VALUE&shopId=VALUE"
text
I want to use the "Shop Product List (V2)" API from Just One API.
API Endpoint: https://api.justoneapi.com/api/taobao/get-shop-item-list/v2
HTTP Method: GET
Authentication: Append "?token=YOUR_API_KEY" to the URL.
OpenAPI Definition: https://docs.justoneapi.com/openapi/taobao-tmall-apis/shop-product-list-v2-en.json

Parameters:
- token (query): Access token for this API service. (Required)
- userId (query): Shop identifier. Also known as Seller ID or User ID (they refer to the same value). (Required)
- shopId (query): Unique shop identifier on Taobao/Tmall (shop ID). (Required)
- sort (query): Sort order for the result set.

Available Values:
- `coefp`: Comprehensive sorting
- `hotsell`: Hot selling / Sales volume
- `oldstarts`: New arrivals / Old starts
- `bid`: Price: Low to High
- `_bid`: Price: High to Low
- page (query): Page number for pagination.

Return format: JSON

Response Handling & Error Codes:
1. Business results should be determined by the "code" field in the response body (code 0 means success).
2. Timeout Recommendation: Set request timeout to at least 60 seconds.
3. Business Code Reference:
   - 0: Success
   - 100: Invalid or Inactive Token
   - 301: Collection Failed. Please Retry.
   - 302: Rate Limit Exceeded
   - 303: Daily Quota Exceeded
   - 400: Invalid Parameters
   - 500: Internal Server Error
   - 600: Permission Denied
   - 601: Insufficient Balance

Please help me write a script in my preferred programming language to call this API and handle the response.
python
# Tip: For Mainland China, replace https://api.justoneapi.com with http://47.117.133.51:30015
import requests

url = "https://api.justoneapi.com/api/taobao/get-shop-item-list/v2?token=YOUR_API_KEY&userId=VALUE&shopId=VALUE"
response = requests.get(url)
print(response.json())
js
// Tip: For Mainland China, replace https://api.justoneapi.com with http://47.117.133.51:30015
const response = await fetch("https://api.justoneapi.com/api/taobao/get-shop-item-list/v2?token=YOUR_API_KEY&userId=VALUE&shopId=VALUE", {
  method: "GET"
});
const data = await response.json();
console.log(data);
java
// Tip: For Mainland China, replace https://api.justoneapi.com with http://47.117.133.51:30015
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;

public class Main {
    public static void main(String[] args) throws Exception {
        HttpClient client = HttpClient.newHttpClient();
        HttpRequest request = HttpRequest.newBuilder()
            .uri(URI.create("https://api.justoneapi.com/api/taobao/get-shop-item-list/v2?token=YOUR_API_KEY&userId=VALUE&shopId=VALUE"))
            .method("GET", HttpRequest.BodyPublishers.noBody())
            .build();

        HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
        System.out.println(response.body());
    }
}
go
// Tip: For Mainland China, replace https://api.justoneapi.com with http://47.117.133.51:30015
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	client := &http.Client{}
	url := "https://api.justoneapi.com/api/taobao/get-shop-item-list/v2?token=YOUR_API_KEY&userId=VALUE&shopId=VALUE"
	req, _ := http.NewRequest("GET", url, nil)
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
php
// Tip: For Mainland China, replace https://api.justoneapi.com with http://47.117.133.51:30015
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.justoneapi.com/api/taobao/get-shop-item-list/v2?token=YOUR_API_KEY&userId=VALUE&shopId=VALUE");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
$response = curl_exec($ch);
curl_close($ch);
echo $response;

Responses

json
{
  "code": 0,
  "data": {
    "httpData": {
      "breadcrumbModuleResponse": {
        "breadcrumbList": [
          {
            "href": "https://taobao.com/",
            "name": "首页"
          },
          {
            "href": "https://www.taobao.com/tbhome/page/market-list",
            "name": "网页地图"
          },
          {
            "name": "Uniqlo官方旗舰店"
          }
        ],
        "success": true
      },
      "itemListModuleResponse": {
        "itemList": [
          {
            "areaLimit": false,
            "backCatId": 50008899,
            "backCatIdL1": 16,
            "commentCount": "8000+",
            "commentTagList": [],
            "discntPriceYuan": 399,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 803842088977,
            "itemIdStr": "L2JFc0tMMFI3Z0xaSUtReTZva0lZQT09",
            "itemName": "Uniqlo女装高级轻型羽绒便携式茄克/轻暖便携式排骨羽绒478575",
            "orderCount30Day": "2000+",
            "orderPayUV": "2000+",
            "picUrlFull": "https://img.alicdn.com/i4/196993935/O1CN0154DfIE1ewHd9GWdFW_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 39900,
            "priceYuanDouble": 399,
            "priceZKDoubleHKD": 454.06,
            "priceZKDoubleTWD": 1864.01,
            "priceZKFen": 39900,
            "priceZKYuanDouble": 399,
            "priceZKYuanDoubleWorld": 399,
            "soldCount30Day": "2000+"
          },
          {
            "areaLimit": false,
            "backCatId": 50008899,
            "backCatIdL1": 16,
            "commentCount": "7000+",
            "commentTagList": [],
            "discntPriceYuan": 299,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 810332424228,
            "itemIdStr": "aloxRjBOczdEVGY2ejNXZ3dDbi9Zdz09",
            "itemName": "Uniqlo女高级轻型羽绒便携式背心轻暖便携式羽绒马甲469876",
            "orderCount30Day": "1000+",
            "orderPayUV": "1000+",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN01OTckNx1ewHdw47rTt_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 29900,
            "priceYuanDouble": 299,
            "priceZKDoubleHKD": 340.26,
            "priceZKDoubleTWD": 1396.84,
            "priceZKFen": 29900,
            "priceZKYuanDouble": 299,
            "priceZKYuanDoubleWorld": 299,
            "soldCount30Day": "2000+"
          },
          {
            "areaLimit": false,
            "backCatId": 50008899,
            "backCatIdL1": 16,
            "commentCount": "3000+",
            "commentTagList": [],
            "discntPriceYuan": 399,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 810788331861,
            "itemIdStr": "ekpPdHNIYWFYY2N4UjZSdUNxdkpaZz09",
            "itemName": "Uniqlo女装高级轻型羽绒茄克/轻暖便携式排骨羽绒478572",
            "orderCount30Day": "2000+",
            "orderPayUV": "2000+",
            "picUrlFull": "https://img.alicdn.com/i4/196993935/O1CN01UKl7yZ1ewHdomCIVV_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 39900,
            "priceYuanDouble": 399,
            "priceZKDoubleHKD": 454.06,
            "priceZKDoubleTWD": 1864.01,
            "priceZKFen": 39900,
            "priceZKYuanDouble": 399,
            "priceZKYuanDoubleWorld": 399,
            "soldCount30Day": "2000+"
          },
          {
            "areaLimit": false,
            "backCatId": 121406004,
            "backCatIdL1": 50008165,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 129,
            "discntType": "0",
            "freeShipping": false,
            "itemId": 819840967124,
            "itemIdStr": "WnZ4ZlFRZ25kL25kM2NiWjRQN3NtQT09",
            "itemName": "Uniqlo童装男女童HEATTECH ULTRA WARM圆领T恤保暖衣470366",
            "orderCount30Day": "0",
            "orderPayUV": "0",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN017vhrvO1ewHclWlgyJ_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 12900,
            "priceYuanDouble": 129,
            "priceZKDoubleHKD": 146.8,
            "priceZKDoubleTWD": 602.65,
            "priceZKFen": 12900,
            "priceZKYuanDouble": 129,
            "priceZKYuanDoubleWorld": 129,
            "soldCount30Day": "0"
          },
          {
            "areaLimit": false,
            "backCatId": 50006846,
            "backCatIdL1": 1625,
            "commentCount": "700+",
            "commentTagList": [],
            "discntPriceYuan": 39,
            "discntType": "0",
            "freeShipping": false,
            "itemId": 819874163439,
            "itemIdStr": "ck5DYitmU3NvMFl4VmMvcDZ5c0lydz09",
            "itemName": "Uniqlo女装HEATTECH裤袜/保暖衣内搭裤473092",
            "orderCount30Day": "5",
            "orderPayUV": "5",
            "picUrlFull": "https://img.alicdn.com/i2/196993935/O1CN01qJqbJG1ewHckhEifz_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 3900,
            "priceYuanDouble": 39,
            "priceZKDoubleHKD": 44.38,
            "priceZKDoubleTWD": 182.2,
            "priceZKFen": 3900,
            "priceZKYuanDouble": 39,
            "priceZKYuanDoubleWorld": 39,
            "soldCount30Day": "5"
          },
          {
            "areaLimit": false,
            "backCatId": 50012777,
            "backCatIdL1": 1625,
            "commentCount": "7000+",
            "commentTagList": [],
            "discntPriceYuan": 129,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 819994318792,
            "itemIdStr": "T0ZaVkFLM0NJWHpzUWRpcFhpZ1JYdz09",
            "itemName": "Uniqlo女装HEATTECH ULTRA WARM紧身裤/10分保暖衣卫生裤469844",
            "orderCount30Day": "17",
            "orderPayUV": "17",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN01huV2Wt1ewHe1ej1RP_!!196993935.jpg",
            "priceCurrency": "CNY",
            "priceFen": 19900,
            "priceYuanDouble": 199,
            "priceZKDoubleHKD": 146.8,
            "priceZKDoubleTWD": 602.65,
            "priceZKFen": 12900,
            "priceZKYuanDouble": 129,
            "priceZKYuanDoubleWorld": 129,
            "soldCount30Day": "18"
          },
          {
            "areaLimit": false,
            "backCatId": 50012777,
            "backCatIdL1": 1625,
            "commentCount": "9000+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "0",
            "freeShipping": false,
            "itemId": 821831495306,
            "itemIdStr": "OGRkRGIyaEovZ0pxRVRQSFdoNE9xZz09",
            "itemName": "Uniqlo女装HEATTECH EXTRA WARM棉混纺紧身裤/10分保暖衣469841",
            "orderCount30Day": "9",
            "orderPayUV": "9",
            "picUrlFull": "https://img.alicdn.com/i2/196993935/O1CN0105PgHY1ewHdzoMy2L_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "9"
          },
          {
            "areaLimit": false,
            "backCatId": 50008885,
            "backCatIdL1": 1625,
            "commentCount": "9000+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 832235136487,
            "itemIdStr": "eCtpMzhXT1NGbUhPQUlaejJzTGppUT09",
            "itemName": "Uniqlo女装HEATTECH U领T恤/8分袖保暖衣内衣469740 472364",
            "orderCount30Day": "4",
            "orderPayUV": "4",
            "picUrlFull": "https://img.alicdn.com/i4/196993935/O1CN015HwJl41ewHckWJjEJ_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "5"
          },
          {
            "areaLimit": false,
            "backCatId": 50011167,
            "backCatIdL1": 30,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 599,
            "discntType": "0",
            "freeShipping": false,
            "itemId": 838353415558,
            "itemIdStr": "VFBFR1NkckFhcG1FbHduY05YOWc1dz09",
            "itemName": "Uniqlo男装女装高级保暖羽绒茄克冰雪羽绒户外连帽外套477136",
            "orderCount30Day": "200+",
            "orderPayUV": "200+",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN01yXW8131ewHdpiu01r_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 59900,
            "priceYuanDouble": 599,
            "priceZKDoubleHKD": 681.66,
            "priceZKDoubleTWD": 2798.35,
            "priceZKFen": 59900,
            "priceZKYuanDouble": 599,
            "priceZKYuanDoubleWorld": 599,
            "soldCount30Day": "300+"
          },
          {
            "areaLimit": false,
            "backCatId": 201402001,
            "backCatIdL1": 30,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 699,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 841857222674,
            "itemIdStr": "cHFvR1B4Z242UVlsZXdlRFBvajk4UT09",
            "itemName": "Uniqlo男装女装羊绒圆领针织衫/长袖毛衣毛衫舒适469404",
            "orderCount30Day": "11",
            "orderPayUV": "11",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN012tQmfA1ewHdiXBHCl_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 69900,
            "priceYuanDouble": 699,
            "priceZKDoubleHKD": 795.46,
            "priceZKDoubleTWD": 3265.52,
            "priceZKFen": 69900,
            "priceZKYuanDouble": 699,
            "priceZKYuanDoubleWorld": 699,
            "soldCount30Day": "11"
          },
          {
            "areaLimit": false,
            "backCatId": 50000671,
            "backCatIdL1": 16,
            "commentCount": "1万+",
            "commentTagList": [],
            "discntPriceYuan": 79,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 848579627958,
            "itemIdStr": "Z3ZZSnhVOTV3dnBnSkN5bjVOS21nUT09",
            "itemName": "Uniqlo女装圆领短T恤短袖迷你T修身百搭辣妹显瘦打底474410",
            "orderCount30Day": "800+",
            "orderPayUV": "800+",
            "picUrlFull": "https://img.alicdn.com/i2/196993935/O1CN012NnjIx1ewHe4aBtDQ_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 7900,
            "priceYuanDouble": 79,
            "priceZKDoubleHKD": 89.9,
            "priceZKDoubleTWD": 369.06,
            "priceZKFen": 7900,
            "priceZKYuanDouble": 79,
            "priceZKYuanDoubleWorld": 79,
            "soldCount30Day": "900+"
          },
          {
            "areaLimit": false,
            "backCatId": 50010394,
            "backCatIdL1": 1625,
            "commentCount": "5000+",
            "commentTagList": [],
            "discntPriceYuan": 129,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 848860702631,
            "itemIdStr": "S2dhajJtTnFJeldpMDZWQ3U3UnYyUT09",
            "itemName": "Uniqlo女装AIRism棉混纺Bra背心/加杯肩带胸垫477762 485784",
            "orderCount30Day": "2000+",
            "orderPayUV": "2000+",
            "picUrlFull": "https://img.alicdn.com/i2/196993935/O1CN01enPJpz1ewHdyVeSPe_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 12900,
            "priceYuanDouble": 129,
            "priceZKDoubleHKD": 146.8,
            "priceZKDoubleTWD": 602.65,
            "priceZKFen": 12900,
            "priceZKYuanDouble": 129,
            "priceZKYuanDoubleWorld": 129,
            "soldCount30Day": "3000+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000671,
            "backCatIdL1": 16,
            "commentCount": "2000+",
            "commentTagList": [],
            "discntPriceYuan": 39,
            "discntType": "0",
            "freeShipping": false,
            "itemId": 849233812878,
            "itemIdStr": "K2hiTFdwZzdZNG85Ly9LbGdacWJpQT09",
            "itemName": "Uniqlo女装插肩袖圆领短T恤短袖迷你T修身打底476602",
            "orderCount30Day": "300+",
            "orderPayUV": "300+",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN016bnhMd1ewHcBjecqS_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 3900,
            "priceYuanDouble": 39,
            "priceZKDoubleHKD": 44.38,
            "priceZKDoubleTWD": 182.2,
            "priceZKFen": 3900,
            "priceZKYuanDouble": 39,
            "priceZKYuanDoubleWorld": 39,
            "soldCount30Day": "300+"
          },
          {
            "areaLimit": false,
            "backCatId": 162201,
            "backCatIdL1": 16,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 249,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 855095190023,
            "itemIdStr": "VkkxeUlzYjBBUTYxbmNiblhiWFB1Zz09",
            "itemName": "加长款Uniqlo女装针织廓形长裤/休闲裤弯刀裤484159 483723",
            "orderCount30Day": "6000+",
            "orderPayUV": "6000+",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN01TOqsSw1ewHdzUNfAL_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 24900,
            "priceYuanDouble": 249,
            "priceZKDoubleHKD": 283.36,
            "priceZKDoubleTWD": 1163.25,
            "priceZKFen": 24900,
            "priceZKYuanDouble": 249,
            "priceZKYuanDoubleWorld": 249,
            "soldCount30Day": "7000+"
          },
          {
            "areaLimit": false,
            "backCatId": 3035,
            "backCatIdL1": 30,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 79,
            "discntType": "0",
            "freeShipping": false,
            "itemId": 855787454870,
            "itemIdStr": "bUNsL0NLR3BLc3VWZUZ6QjFDY0Z3UT09",
            "itemName": "Uniqlo合作款男装女装全棉短裤/裤子休闲470619",
            "orderCount30Day": "300+",
            "orderPayUV": "300+",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN01vWgXDE1ewHc5MY2ez_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 7900,
            "priceYuanDouble": 79,
            "priceZKDoubleHKD": 89.9,
            "priceZKDoubleTWD": 369.06,
            "priceZKFen": 7900,
            "priceZKYuanDouble": 79,
            "priceZKYuanDoubleWorld": 79,
            "soldCount30Day": "400+"
          },
          {
            "areaLimit": false,
            "backCatId": 162201,
            "backCatIdL1": 16,
            "commentCount": "900+",
            "commentTagList": [],
            "discntPriceYuan": 79,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 855851558680,
            "itemIdStr": "am1YamdVMC9qYlowQ0FweUZvQ01vQT09",
            "itemName": "加长款Uniqlo女装全棉松紧九分裤/休闲百搭宽松478209 481411",
            "orderCount30Day": "500+",
            "orderPayUV": "500+",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN01OfttBL1ewHdrhvQph_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 7900,
            "priceYuanDouble": 79,
            "priceZKDoubleHKD": 89.9,
            "priceZKDoubleTWD": 369.06,
            "priceZKFen": 7900,
            "priceZKYuanDouble": 79,
            "priceZKYuanDoubleWorld": 79,
            "soldCount30Day": "600+"
          },
          {
            "areaLimit": false,
            "backCatId": 162104,
            "backCatIdL1": 16,
            "commentCount": "900+",
            "commentTagList": [],
            "discntPriceYuan": 299,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 857078610658,
            "itemIdStr": "T2J2clEvQ2lFWGxtRjdDVnRqNUxOZz09",
            "itemName": "Uniqlo女装法国麻条纹衬衫长袖衬衫上衣空调衫薄外套475648",
            "orderCount30Day": "200+",
            "orderPayUV": "200+",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN01xzBkVc1ewHdkMfATO_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 29900,
            "priceYuanDouble": 299,
            "priceZKDoubleHKD": 340.26,
            "priceZKDoubleTWD": 1396.84,
            "priceZKFen": 29900,
            "priceZKYuanDouble": 299,
            "priceZKYuanDoubleWorld": 299,
            "soldCount30Day": "200+"
          },
          {
            "areaLimit": false,
            "backCatId": 162104,
            "backCatIdL1": 16,
            "commentCount": "4000+",
            "commentTagList": [],
            "discntPriceYuan": 299,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 857395953742,
            "itemIdStr": "K0RGbE9DYi82QTEzWTdQMjN0dUZlUT09",
            "itemName": "Uniqlo女装法国麻衬衫长袖衬衫上衣空调衫薄外套475647",
            "orderCount30Day": "400+",
            "orderPayUV": "400+",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN01EfLwBI1ewHdlPyjmT_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 29900,
            "priceYuanDouble": 299,
            "priceZKDoubleHKD": 340.26,
            "priceZKDoubleTWD": 1396.84,
            "priceZKFen": 29900,
            "priceZKYuanDouble": 299,
            "priceZKYuanDoubleWorld": 299,
            "soldCount30Day": "400+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000436,
            "backCatIdL1": 30,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 857632455987,
            "itemIdStr": "T0EwSEZCcnJORFU0MFJWaDI1dklhdz09",
            "itemName": "Uniqlo男装女装情侣UT NY POP ART印花短袖T恤安迪沃霍尔477287",
            "orderCount30Day": "200+",
            "orderPayUV": "200+",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN01oGVYNt1ewHb6Fz23U_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "200+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000436,
            "backCatIdL1": 30,
            "commentCount": "2000+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 857781486860,
            "itemIdStr": "MDFsVGh6Zkg0MklRaFN2aHVoa2d4UT09",
            "itemName": "Uniqlo男装女装情侣UT NY POP ART印花短袖T恤巴斯奎特477293",
            "orderCount30Day": "300+",
            "orderPayUV": "300+",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN01VIgLYO1ewHaG1Ffpc_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "300+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000436,
            "backCatIdL1": 30,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 858344516913,
            "itemIdStr": "V1A2MWlhNE5FQVhINXFldS9sNFhTUT09",
            "itemName": "Uniqlo男装女装情侣UT NY POP ART印花短袖T恤凯斯哈林477290",
            "orderCount30Day": "200+",
            "orderPayUV": "200+",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN01QzWIZ91ewHaF8Tru9_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "200+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000436,
            "backCatIdL1": 30,
            "commentCount": "600+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 858354464412,
            "itemIdStr": "M2ZUSDROY29rWWloYzVTa3F3dXc5UT09",
            "itemName": "Uniqlo男装女装情侣UT NY POP ART印花短袖T恤巴斯奎特477291",
            "orderCount30Day": "96",
            "orderPayUV": "96",
            "picUrlFull": "https://img.alicdn.com/i2/196993935/O1CN01ZG9ED81ewHaF8WHgJ_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "100+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000671,
            "backCatIdL1": 16,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 859408499161,
            "itemIdStr": "TFc3NVE5UVRVOVV2NVZHS29DZ25Gdz09",
            "itemName": "Uniqlo女装UT PEANUTS印花短袖T恤史努比475521",
            "orderCount30Day": "100+",
            "orderPayUV": "100+",
            "picUrlFull": "https://img.alicdn.com/i2/196993935/O1CN01oe1aXC1ewHdKvGARQ_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "100+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000436,
            "backCatIdL1": 30,
            "commentCount": "700+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 859410567104,
            "itemIdStr": "NWdmZndhcSt1MXVhYWFIU0lhd0FEUT09",
            "itemName": "Uniqlo男装女装情侣UT PEANUTS印花短袖T恤史努比477814",
            "orderCount30Day": "100+",
            "orderPayUV": "100+",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN01ZPR4sM1ewHdIu4DHE_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "100+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000436,
            "backCatIdL1": 30,
            "commentCount": "900+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 859558730208,
            "itemIdStr": "T05pZDJOL212eUtTcG9yUHc2L1NiUT09",
            "itemName": "Uniqlo男装女装情侣UT PEANUTS印花短袖T恤史努比477813",
            "orderCount30Day": "100+",
            "orderPayUV": "100+",
            "picUrlFull": "https://img.alicdn.com/i2/196993935/O1CN01EYnlD31ewHdKvIaAP_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "100+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000436,
            "backCatIdL1": 30,
            "commentCount": "700+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 859565930647,
            "itemIdStr": "Nm95clNnaU94YmpVWTBsYitqR2tXUT09",
            "itemName": "Uniqlo男装女装情侣UT MAGIC FOR ALL印花短袖T恤477892",
            "orderCount30Day": "100+",
            "orderPayUV": "100+",
            "picUrlFull": "https://img.alicdn.com/i2/196993935/O1CN01WLTdcJ1ewHdLZgAle_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "100+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000671,
            "backCatIdL1": 16,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 859884121514,
            "itemIdStr": "VzNuck9KQ0ZZSFpBSWIzZ1ZIQmZ4QT09",
            "itemName": "Uniqlo女装UT PEANUTS印花短袖T恤史努比476605",
            "orderCount30Day": "300+",
            "orderPayUV": "300+",
            "picUrlFull": "https://img.alicdn.com/i2/196993935/O1CN01JnEwRE1ewHdLaqx1L_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "300+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000436,
            "backCatIdL1": 30,
            "commentCount": "900+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 860142564243,
            "itemIdStr": "dHRhajhxaDZwQ25GckI2cW9JTlRBUT09",
            "itemName": "Uniqlo男装女装情侣UT PEANUTS印花短袖T恤史努比477815",
            "orderCount30Day": "200+",
            "orderPayUV": "200+",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN01VBqgfw1ewHdEbKvwt_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "300+"
          },
          {
            "areaLimit": false,
            "backCatId": 50013189,
            "backCatIdL1": 50008165,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 79,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 861715611064,
            "itemIdStr": "UWdkVHhmMlYwMVJ3b1p6Sis3NmpzZz09",
            "itemName": "Uniqlo童装男童女童UT ULTRAMAN奥特英雄印花短袖T恤475444",
            "orderCount30Day": "300+",
            "orderPayUV": "300+",
            "picUrlFull": "https://img.alicdn.com/i4/196993935/O1CN01RzKfBf1ewHbs3Jhe5_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 7900,
            "priceYuanDouble": 79,
            "priceZKDoubleHKD": 89.9,
            "priceZKDoubleTWD": 369.06,
            "priceZKFen": 7900,
            "priceZKYuanDouble": 79,
            "priceZKYuanDoubleWorld": 79,
            "soldCount30Day": "300+"
          },
          {
            "areaLimit": false,
            "backCatId": 50013189,
            "backCatIdL1": 50008165,
            "commentCount": "600+",
            "commentTagList": [],
            "discntPriceYuan": 79,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 862469312892,
            "itemIdStr": "eUFRdG85WjhEeHREVkRzZlBNN051QT09",
            "itemName": "Uniqlo童装男童女童UT ULTRAMAN奥特英雄印花短袖T恤475445",
            "orderCount30Day": "100+",
            "orderPayUV": "100+",
            "picUrlFull": "https://img.alicdn.com/i2/196993935/O1CN0149F6Rc1ewHbqgtsZw_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 7900,
            "priceYuanDouble": 79,
            "priceZKDoubleHKD": 89.9,
            "priceZKDoubleTWD": 369.06,
            "priceZKFen": 7900,
            "priceZKYuanDouble": 79,
            "priceZKYuanDoubleWorld": 79,
            "soldCount30Day": "100+"
          },
          {
            "areaLimit": false,
            "backCatId": 50010394,
            "backCatIdL1": 1625,
            "commentCount": "2000+",
            "commentTagList": [],
            "discntPriceYuan": 79,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 862833369092,
            "itemIdStr": "V2g3TTdRV054dm1Lck5wa2g0OUlBZz09",
            "itemName": "Uniqlo女装AIRism无袖背心/空气衣吸汗速干打底衫内衣474002 482148",
            "orderCount30Day": "1000+",
            "orderPayUV": "1000+",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN01mefonm1ewHdoUqggO_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 7900,
            "priceYuanDouble": 79,
            "priceZKDoubleHKD": 89.9,
            "priceZKDoubleTWD": 369.06,
            "priceZKFen": 7900,
            "priceZKYuanDouble": 79,
            "priceZKYuanDoubleWorld": 79,
            "soldCount30Day": "1000+"
          },
          {
            "areaLimit": false,
            "backCatId": 50010402,
            "backCatIdL1": 30,
            "commentCount": "5000+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 864462216516,
            "itemIdStr": "QnNIWlVqNTdWaVYrMkNVSkxvNC9PUT09",
            "itemName": "Uniqlo男装女装快干POLO衫休闲通勤短袖T恤477155 465194",
            "orderCount30Day": "800+",
            "orderPayUV": "800+",
            "picUrlFull": "https://img.alicdn.com/i2/196993935/O1CN013XCXrL1ewHbv6MvJo_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 14900,
            "priceYuanDouble": 149,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "1000+"
          },
          {
            "areaLimit": false,
            "backCatId": 50010394,
            "backCatIdL1": 1625,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 79,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 865420000561,
            "itemIdStr": "SC9hMThlZWE4eXh1K3daQzlFUGJjZz09",
            "itemName": "Uniqlo女装AIRism背心/空气衣吸汗速干打底衫内衣474004 464446",
            "orderCount30Day": "400+",
            "orderPayUV": "400+",
            "picUrlFull": "https://img.alicdn.com/i4/196993935/O1CN0161AQuM1ewHdzP0Crv_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 7900,
            "priceYuanDouble": 79,
            "priceZKDoubleHKD": 89.9,
            "priceZKDoubleTWD": 369.06,
            "priceZKFen": 7900,
            "priceZKYuanDouble": 79,
            "priceZKYuanDoubleWorld": 79,
            "soldCount30Day": "500+"
          },
          {
            "areaLimit": false,
            "backCatId": 124422002,
            "backCatIdL1": 50008165,
            "commentCount": "900+",
            "commentTagList": [],
            "discntPriceYuan": 79,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 868783249045,
            "itemIdStr": "OHhORm5rdTgwYWJrdzlSZHcrOURQdz09",
            "itemName": "Uniqlo童装男女童AIRism抗UV拉链连帽开衫防晒衣服透气478242",
            "orderCount30Day": "1000+",
            "orderPayUV": "1000+",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN01sVo9i61ewHdxKOsrl_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 7900,
            "priceYuanDouble": 79,
            "priceZKDoubleHKD": 89.9,
            "priceZKDoubleTWD": 369.06,
            "priceZKFen": 7900,
            "priceZKYuanDouble": 79,
            "priceZKYuanDoubleWorld": 79,
            "soldCount30Day": "1000+"
          },
          {
            "areaLimit": false,
            "backCatId": 162201,
            "backCatIdL1": 16,
            "commentCount": "400+",
            "commentTagList": [],
            "discntPriceYuan": 79,
            "discntType": "0",
            "freeShipping": false,
            "itemId": 869946910557,
            "itemIdStr": "MzRWbms2L2xER1k5ckoyRGpuaUd4Zz09",
            "itemName": "Uniqlo女装高弹力运动短裤/裤子476112",
            "orderCount30Day": "9",
            "orderPayUV": "9",
            "picUrlFull": "https://img.alicdn.com/i4/196993935/O1CN01Xt8OH41ewHdGSRfxo_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 7900,
            "priceYuanDouble": 79,
            "priceZKDoubleHKD": 89.9,
            "priceZKDoubleTWD": 369.06,
            "priceZKFen": 7900,
            "priceZKYuanDouble": 79,
            "priceZKYuanDoubleWorld": 79,
            "soldCount30Day": "12"
          },
          {
            "areaLimit": false,
            "backCatId": 3035,
            "backCatIdL1": 30,
            "commentCount": "400+",
            "commentTagList": [],
            "discntPriceYuan": 249,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 870257637366,
            "itemIdStr": "ZjhhNFF5YzNaKysxUnY1NWlHUTJaQT09",
            "itemName": "加长款Uniqlo男装高弹力长裤/休闲裤通勤裤子477837",
            "orderCount30Day": "32",
            "orderPayUV": "32",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN012AMwIJ1ewHdtLdGs3_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 24900,
            "priceYuanDouble": 249,
            "priceZKDoubleHKD": 283.36,
            "priceZKDoubleTWD": 1163.25,
            "priceZKFen": 24900,
            "priceZKYuanDouble": 249,
            "priceZKYuanDoubleWorld": 249,
            "soldCount30Day": "32"
          },
          {
            "areaLimit": false,
            "backCatId": 50000671,
            "backCatIdL1": 16,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 39,
            "discntType": "0",
            "freeShipping": false,
            "itemId": 870311485105,
            "itemIdStr": "TWQyaUZ6cFZ4Rk94QmdBMjh0cmFFZz09",
            "itemName": "Uniqlo女装AIRism高弹力短T恤短袖辣妹风474411 465762",
            "orderCount30Day": "17",
            "orderPayUV": "17",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN01GEmqxd1ewHcn6NM2c_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 3900,
            "priceYuanDouble": 39,
            "priceZKDoubleHKD": 44.38,
            "priceZKDoubleTWD": 182.2,
            "priceZKFen": 3900,
            "priceZKYuanDouble": 39,
            "priceZKYuanDoubleWorld": 39,
            "soldCount30Day": "17"
          },
          {
            "areaLimit": false,
            "backCatId": 50000436,
            "backCatIdL1": 30,
            "commentCount": "600+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 872067341957,
            "itemIdStr": "akJ4aC9scHhreEVtZlNmdGRrU25aUT09",
            "itemName": "Uniqlo男装女装情侣UT NY POP ART印花短袖T恤479309",
            "orderCount30Day": "200+",
            "orderPayUV": "200+",
            "picUrlFull": "https://img.alicdn.com/i2/196993935/O1CN01LyUEfF1ewHbFIjCUR_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "200+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000671,
            "backCatIdL1": 16,
            "commentCount": "2000+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 873876051106,
            "itemIdStr": "KzlDdHVPbkFZMGNEem43bGs5aWg5dz09",
            "itemName": "Uniqlo女装UT miffy印花短袖T恤米菲475520",
            "orderCount30Day": "300+",
            "orderPayUV": "300+",
            "picUrlFull": "https://img.alicdn.com/i2/196993935/O1CN01d6RLob1ewHbS0pTxq_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "300+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000671,
            "backCatIdL1": 16,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 874061094471,
            "itemIdStr": "SFFrOWFJZ2hqMjZ4ZmV2dUlwdDlqZz09",
            "itemName": "Uniqlo女装UT miffy印花短袖T恤米菲478980",
            "orderCount30Day": "400+",
            "orderPayUV": "400+",
            "picUrlFull": "https://img.alicdn.com/i2/196993935/O1CN01vUeJma1ewHbQx8oLU_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "400+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000671,
            "backCatIdL1": 16,
            "commentCount": "900+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 874430973962,
            "itemIdStr": "TFFZSE1lSEY1RFNKUXN6a3E0cnA4Zz09",
            "itemName": "Uniqlo女装UT PEANUTS印花短袖T恤史努比477717",
            "orderCount30Day": "100+",
            "orderPayUV": "100+",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN016RLVE61ewHdLaCgCJ_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "100+"
          },
          {
            "areaLimit": false,
            "backCatId": 50011123,
            "backCatIdL1": 30,
            "commentCount": "500+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "0",
            "freeShipping": false,
            "itemId": 876367363934,
            "itemIdStr": "bDlSTUpXYzBxcHVqZnRxZTdybVNtZz09",
            "itemName": "Uniqlo男装女装莫代尔棉混纺开领衬衫/短袖古巴领度假风474519",
            "orderCount30Day": "200+",
            "orderPayUV": "200+",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN011KQ7w91ewHdGQlciz_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "300+"
          },
          {
            "areaLimit": false,
            "backCatId": 50013189,
            "backCatIdL1": 50008165,
            "commentCount": "700+",
            "commentTagList": [],
            "discntPriceYuan": 79,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 876568026934,
            "itemIdStr": "WWoxNGY1c2E3cG01aGpXd0J5Uktqdz09",
            "itemName": "Uniqlo童装男童女童AIRism棉混纺圆领T恤短袖透气聪明T474592",
            "orderCount30Day": "300+",
            "orderPayUV": "300+",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN01GoCx2x1ewHcsAhO3c_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 7900,
            "priceYuanDouble": 79,
            "priceZKDoubleHKD": 89.9,
            "priceZKDoubleTWD": 369.06,
            "priceZKFen": 7900,
            "priceZKYuanDouble": 79,
            "priceZKYuanDoubleWorld": 79,
            "soldCount30Day": "400+"
          },
          {
            "areaLimit": false,
            "backCatId": 3035,
            "backCatIdL1": 30,
            "commentCount": "3000+",
            "commentTagList": [],
            "discntPriceYuan": 149,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 876569918455,
            "itemIdStr": "TXkvWlZ3YWdWd2VtV1ZkejhMTXF2dz09",
            "itemName": "Uniqlo男装女装速干高弹力运动短裤DRY-EX裤子超弹475386 465207",
            "orderCount30Day": "500+",
            "orderPayUV": "500+",
            "picUrlFull": "https://img.alicdn.com/i2/196993935/O1CN01gpceEi1ewHcDM4iYg_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 14900,
            "priceYuanDouble": 149,
            "priceZKDoubleHKD": 169.56,
            "priceZKDoubleTWD": 696.08,
            "priceZKFen": 14900,
            "priceZKYuanDouble": 149,
            "priceZKYuanDoubleWorld": 149,
            "soldCount30Day": "600+"
          },
          {
            "areaLimit": false,
            "backCatId": 162201,
            "backCatIdL1": 16,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 79,
            "discntType": "0",
            "freeShipping": false,
            "itemId": 876833143129,
            "itemIdStr": "OTVqVzdnME9KeU8raEVweEJ3eUJlUT09",
            "itemName": "Uniqlo女装麻混纺裙裤/休闲短裤477614",
            "orderCount30Day": "400+",
            "orderPayUV": "400+",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN01SfWqhB1ewHbCTj9Km_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 7900,
            "priceYuanDouble": 79,
            "priceZKDoubleHKD": 89.9,
            "priceZKDoubleTWD": 369.06,
            "priceZKFen": 7900,
            "priceZKYuanDouble": 79,
            "priceZKYuanDoubleWorld": 79,
            "soldCount30Day": "500+"
          },
          {
            "areaLimit": false,
            "backCatId": 162201,
            "backCatIdL1": 16,
            "commentCount": "3000+",
            "commentTagList": [],
            "discntPriceYuan": 149,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 877754972503,
            "itemIdStr": "eXY0bUtkdGNmbk16MzJ2a3d6YVlEQT09",
            "itemName": "Uniqlo合作款/女装泡泡纱松紧长裤/休闲裤476165",
            "orderCount30Day": "100+",
            "orderPayUV": "100+",
            "picUrlFull": "https://img.alicdn.com/i2/196993935/O1CN016dT5v11ewHbg5C6sz_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 14900,
            "priceYuanDouble": 149,
            "priceZKDoubleHKD": 169.56,
            "priceZKDoubleTWD": 696.08,
            "priceZKFen": 14900,
            "priceZKYuanDouble": 149,
            "priceZKYuanDoubleWorld": 149,
            "soldCount30Day": "100+"
          },
          {
            "areaLimit": false,
            "backCatId": 50010368,
            "backCatIdL1": 28,
            "commentCount": "900+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 881044412739,
            "itemIdStr": "dk5HVGVBTGRjRTk5aE9UTzcwRVhZQT09",
            "itemName": "Uniqlo男款女款时尚太阳镜太阳眼镜眼镜抗UV降低蓝光防雾476536",
            "orderCount30Day": "800+",
            "orderPayUV": "800+",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN01MNrSi11ewHcmaXi22_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "800+"
          },
          {
            "areaLimit": false,
            "backCatId": 3035,
            "backCatIdL1": 30,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 79,
            "discntType": "0",
            "freeShipping": false,
            "itemId": 881668039471,
            "itemIdStr": "dXhlNXdNd3g2M3JFbFAzcDBNZU1SZz09",
            "itemName": "Uniqlo男装女装高弹力短裤/裤子470612",
            "orderCount30Day": "400+",
            "orderPayUV": "400+",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN018U3CMR1ewHdv8T0Kc_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 7900,
            "priceYuanDouble": 79,
            "priceZKDoubleHKD": 89.9,
            "priceZKDoubleTWD": 369.06,
            "priceZKFen": 7900,
            "priceZKYuanDouble": 79,
            "priceZKYuanDoubleWorld": 79,
            "soldCount30Day": "600+"
          },
          {
            "areaLimit": false,
            "backCatId": 50013618,
            "backCatIdL1": 50008165,
            "commentCount": "500+",
            "commentTagList": [],
            "discntPriceYuan": 59,
            "discntType": "0",
            "freeShipping": false,
            "itemId": 881671619404,
            "itemIdStr": "WnlLQWlXcmxMUVBYMExqcGVWUzZWQT09",
            "itemName": "Uniqlo童装女童牛仔短裤水洗产品休闲百搭夏季裤子474703",
            "orderCount30Day": "15",
            "orderPayUV": "15",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN01jSEgU31ewHd4l0qWn_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 5900,
            "priceYuanDouble": 59,
            "priceZKDoubleHKD": 67.14,
            "priceZKDoubleTWD": 275.63,
            "priceZKFen": 5900,
            "priceZKYuanDouble": 59,
            "priceZKYuanDoubleWorld": 59,
            "soldCount30Day": "17"
          },
          {
            "areaLimit": false,
            "backCatId": 50010394,
            "backCatIdL1": 1625,
            "commentCount": "800+",
            "commentTagList": [],
            "discntPriceYuan": 129,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 887404874210,
            "itemIdStr": "WEZWYnRrUmVKZCtpWUR3K0VXcXVSQT09",
            "itemName": "Uniqlo女装Bra短背心/加杯背心辣妹风条纹拼色带胸垫473989",
            "orderCount30Day": "300+",
            "orderPayUV": "300+",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN01EkZlll1ewHcncZH5S_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 12900,
            "priceYuanDouble": 129,
            "priceZKDoubleHKD": 146.8,
            "priceZKDoubleTWD": 602.65,
            "priceZKFen": 12900,
            "priceZKYuanDouble": 129,
            "priceZKYuanDoubleWorld": 129,
            "soldCount30Day": "400+"
          },
          {
            "areaLimit": false,
            "backCatId": 162201,
            "backCatIdL1": 16,
            "commentCount": "800+",
            "commentTagList": [],
            "discntPriceYuan": 249,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 889421515436,
            "itemIdStr": "ekw1RXliK1ZoL2tPdHpKVVVsc2h6Zz09",
            "itemName": "加长款Uniqlo女装休闲廓形长裤系腰带弯刀镰刀裤子480951",
            "orderCount30Day": "61",
            "orderPayUV": "61",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN01eaLCf91ewHdwVGZMA_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 24900,
            "priceYuanDouble": 249,
            "priceZKDoubleHKD": 283.36,
            "priceZKDoubleTWD": 1163.25,
            "priceZKFen": 24900,
            "priceZKYuanDouble": 249,
            "priceZKYuanDoubleWorld": 249,
            "soldCount30Day": "63"
          },
          {
            "areaLimit": false,
            "backCatId": 50000671,
            "backCatIdL1": 16,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 891850466632,
            "itemIdStr": "Mlg3Qjc5U1ZHSDV5ekc2eVpHZTZzUT09",
            "itemName": "Uniqlo女装UT miffy印花短袖T恤米菲480655",
            "orderCount30Day": "300+",
            "orderPayUV": "300+",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN01xTnogh1ewHcD0g5Tw_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "300+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000436,
            "backCatIdL1": 30,
            "commentCount": "900+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 894786146225,
            "itemIdStr": "QTFIQTdMMElBdUExc2FreDFOSDVMQT09",
            "itemName": "Uniqlo男装女装情侣UT PEANUTS印花短袖T恤史努比475746",
            "orderCount30Day": "100+",
            "orderPayUV": "100+",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN01QDjhyN1ewHbrAWbRU_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "100+"
          },
          {
            "areaLimit": false,
            "backCatId": 201565512,
            "backCatIdL1": 16,
            "commentCount": "5000+",
            "commentTagList": [],
            "discntPriceYuan": 149,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 895103408541,
            "itemIdStr": "UXF1WFZ0VWtkS2M4K1c5RXlzWWgwdz09",
            "itemName": "Uniqlo女装AIRism高弹力抗UV拉链连帽衫防晒UPF50+修身477049",
            "orderCount30Day": "1000+",
            "orderPayUV": "1000+",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN01mvKnla1ewHdrq4QiS_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 14900,
            "priceYuanDouble": 149,
            "priceZKDoubleHKD": 169.56,
            "priceZKDoubleTWD": 696.08,
            "priceZKFen": 14900,
            "priceZKYuanDouble": 149,
            "priceZKYuanDoubleWorld": 149,
            "soldCount30Day": "1000+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000436,
            "backCatIdL1": 30,
            "commentCount": "900+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "0",
            "freeShipping": false,
            "itemId": 895220725783,
            "itemIdStr": "L1dHakgxdERVSHFON0ZhVkthOTJUZz09",
            "itemName": "Uniqlo男装女装情侣UT PEANUTS印花短袖T恤史努比477816",
            "orderCount30Day": "200+",
            "orderPayUV": "200+",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN01WvNjrP1ewHbvTFoTv_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "200+"
          },
          {
            "areaLimit": false,
            "backCatId": 50011167,
            "backCatIdL1": 30,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 299,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 898079331892,
            "itemIdStr": "aDE0ZEQ5UHZSMVY1OXFTSVRBekxSQT09",
            "itemName": "Uniqlo男女装高级轻型羽绒便携式茄克夹克外套排骨羽绒服478275",
            "orderCount30Day": "1000+",
            "orderPayUV": "1000+",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN011WURNb1ewHdq1UGKj_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 39900,
            "priceYuanDouble": 399,
            "priceZKDoubleHKD": 340.26,
            "priceZKDoubleTWD": 1396.84,
            "priceZKFen": 29900,
            "priceZKYuanDouble": 299,
            "priceZKYuanDoubleWorld": 299,
            "soldCount30Day": "1000+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000436,
            "backCatIdL1": 30,
            "commentCount": "800+",
            "commentTagList": [],
            "discntPriceYuan": 99,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 898761224499,
            "itemIdStr": "WHk3YzM3Nkt6MUw3UE9xUllSa0FKQT09",
            "itemName": "Uniqlo男装女装情侣UT MAGIC FOR ALL印花短袖T恤477899",
            "orderCount30Day": "200+",
            "orderPayUV": "200+",
            "picUrlFull": "https://img.alicdn.com/i3/196993935/O1CN01jcztoK1ewHbwGyNTJ_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 9900,
            "priceYuanDouble": 99,
            "priceZKDoubleHKD": 112.66,
            "priceZKDoubleTWD": 462.5,
            "priceZKFen": 9900,
            "priceZKYuanDouble": 99,
            "priceZKYuanDoubleWorld": 99,
            "soldCount30Day": "200+"
          },
          {
            "areaLimit": false,
            "backCatId": 201832719,
            "backCatIdL1": 30,
            "commentCount": "3000+",
            "commentTagList": [],
            "discntPriceYuan": 199,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 899432562373,
            "itemIdStr": "MzJDNnZ6OFhNTG56WU5SVGdsNkVhZz09",
            "itemName": "Uniqlo男女装防晒衣DRY-EX速干高弹力拉链连帽开衫475387 465203",
            "orderCount30Day": "200+",
            "orderPayUV": "200+",
            "picUrlFull": "https://img.alicdn.com/i1/196993935/O1CN01yCoUoW1ewHd5GetAU_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 19900,
            "priceYuanDouble": 199,
            "priceZKDoubleHKD": 226.46,
            "priceZKDoubleTWD": 929.67,
            "priceZKFen": 19900,
            "priceZKYuanDouble": 199,
            "priceZKYuanDoubleWorld": 199,
            "soldCount30Day": "200+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000671,
            "backCatIdL1": 16,
            "commentCount": "1000+",
            "commentTagList": [],
            "discntPriceYuan": 79,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 901854686053,
            "itemIdStr": "c01QOFJtdk12cW9sakVTeG9KK2ZSZz09",
            "itemName": "Uniqlo女装条纹圆领短T恤短袖迷你T修身打底480820",
            "orderCount30Day": "100+",
            "orderPayUV": "100+",
            "picUrlFull": "https://img.alicdn.com/i4/196993935/O1CN01ZPDTo11ewHdK7Z0DO_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 7900,
            "priceYuanDouble": 79,
            "priceZKDoubleHKD": 89.9,
            "priceZKDoubleTWD": 369.06,
            "priceZKFen": 7900,
            "priceZKYuanDouble": 79,
            "priceZKYuanDoubleWorld": 79,
            "soldCount30Day": "100+"
          },
          {
            "areaLimit": false,
            "backCatId": 50000671,
            "backCatIdL1": 16,
            "commentCount": "8000+",
            "commentTagList": [],
            "discntPriceYuan": 79,
            "discntType": "活动价",
            "freeShipping": false,
            "itemId": 911779239692,
            "itemIdStr": "QXdWQWNwdGdRSVFwVDVXWFBoUWdzQT09",
            "itemName": "Uniqlo女装竹节纱V领T恤/短袖棉白T上衣打底内搭483576",
            "orderCount30Day": "2000+",
            "orderPayUV": "2000+",
            "picUrlFull": "https://img.alicdn.com/i4/196993935/O1CN01beuAKV1ewHe5AgzuR_!!4611686018427380623-0-item_pic.jpg",
            "priceCurrency": "CNY",
            "priceFen": 7900,
            "priceYuanDouble": 79,
            "priceZKDoubleHKD": 89.9,
            "priceZKDoubleTWD": 369.06,
            "priceZKFen": 7900,
            "priceZKYuanDouble": 79,
            "priceZKYuanDoubleWorld": 79,
            "soldCount30Day": "2000+"
          }
        ],
        "page": {
          "hideTotalCount": "1000",
          "nextNo": 2,
          "pageNo": 1,
          "pageSize": 60,
          "prevNo": 1,
          "showBegin": 1,
          "showEnd": 3,
          "totalCount": 2305,
          "totalPages": 39
        },
        "pageUrlFollow": false,
        "success": true
      },
      "metaModuleResponse": {
        "description": "欢迎光临-Uniqlo官方旗舰店,淘宝网Taobao为你提供最新商品图片、价格、品牌、评价、折扣等信息,有问题可直接咨询商家!淘宝数亿热销好货,官方物流可寄送至全球十地,支持外币支付等多种付款方式、平台客服24小时线上、支付宝担保交易、由商家提供退换货承诺。",
        "keyword": "Uniqlo官方旗舰店",
        "linkList": [
          {
            "href": "https://taobao.com57303596.htm",
            "rel": "canonical"
          },
          {
            "href": "https://taobao.com57303596.htm",
            "media": "only screen and (max-width: 640px)",
            "rel": "alternate"
          }
        ],
        "robots": "index,follow",
        "success": true,
        "title": "Uniqlo官方旗舰店 - 淘宝网|Taobao"
      },
      "pageSimplifiedModuleResponse": {
        "simplified": false,
        "simplifiedType": "NO_SIMPLIFIED",
        "success": false,
        "userId": "2222105742804"
      },
      "shopListModuleResponse": {
        "shopList": [
          {
            "deliverScore": "4.9",
            "descriptionMatchScore": "4.8",
            "picUrl": "//img.alicdn.com/imgextra/i2/196993935/O1CN01NCPCZC1ewHZvwOdnz_!!196993935.jpg",
            "sellerId": 196993935,
            "serviceScore": "4.9",
            "shopId": 57303596,
            "shopName": "Uniqlo官方旗舰店"
          }
        ],
        "success": true
      },
      "statusCode": 0,
      "success": true
    },
    "pageData": {
      "env": "production",
      "spm": "a21wu.11804641-tw",
      "locale": "zh-tw",
      "wh_locale": "zh-TW",
      "traffic": "people",
      "client": "pc",
      "wh_pageType": "list-dianpu",
      "pageConfig": {
        "pageVersion": ""
      },
      "query": {
        "wh_clientIp": "35.134.116.97",
        "wh_freeShipping": "",
        "wh_from": "people-pc",
        "wh_hostDomain": "taobao.com",
        "wh_locale": "zh-TW",
        "wh_pageType": "list-dianpu",
        "wh_pvids": "",
        "wh_refererUrl": "https://taobao.comwap/57303596.htm",
        "wh_sessionId": "1d9655e9b15dac9005d4d8077cbf1255",
        "wh_shopId": "57303596",
        "wh_sort": "coefp",
        "wh_spiderRealIpEncry": "",
        "wh_ssr": "true"
      },
      "host": "pageHandler-handler.tmg-wormhole-n",
      "sort": "coefp",
      "detailUrl": "https://taobao.com/item/",
      "currentPath": "https://taobao.com",
      "currentUrl": "https://taobao.com57303596.htm",
      "taglistPath": "https://taobao.com/product/",
      "keyword": "Uniqlo官方旗舰店",
      "pageUrlFollow": false,
      "isBase64On": true
    }
  }
}

💡 Note: For list data, the example shows only 1-2 items for simplicity. The actual count depends on the API response.