1. 任务提交API
通过API获取商品详情
1.1. 地址
| URL | 请求方式 |
| http://localhost:51050/tasks/submit | GET |
1.2. 请求参数
| 参数名 | 含义 | 是否必须 | 字段说明 |
| token | token | 必填 | 请求的token |
| country | 国家 | 必填 | 枚举值:["id" "vn" "my" "th" "ph" "sg"],含义:id - 印度尼西亚(Indonesia),vn - 越南(Vietnam),my - 马来西亚(Malaysia),th - 泰国(Thailand),ph - 菲律宾(Philippines),sg - 新加坡(Singapore) |
| shop_id | 店铺Id | 必填 | 店铺的id |
| item_id | 商品id | 必填 | 商品的id |
| submit_type | 提交类型 | 否 | async:异步提交; sync:同步提交,默认:async,支持大大批量任务提交 |
| task_type | 任务类型 | 否 | shop_detail:商品详情;其他类型可以根据客户自定义提供。默认:shop_detail |
1.3. 返回结果参数说明
响应结果的格式默认为 JSON 形式。
以下是返回参数说明:
| 名称 | 名称 | 含义 | 字段说明 | |
| status | 返回结果状态值 | 返回值为 0 或 1,0 表示任务提交失败;1 表示任务提交成功。 | ||
| message | 返回状态说明 | 当 status 为 0 时,message 会返回具体错误原因,否则返回“OK”。 | ||
| account_balance | 账户余额 | 返回用户当前的账户余额 | ||
| data | ||||
| task_id | 提交的任务id | 返回本次提交任务的id | ||
| country | 国家 | 国家编码 | ||
| shop_id | 店铺Id | 商铺id | ||
| item_id | 商品id | 商品id | ||
任务提交成功返回数据示例:
{
'status': 1,
'message': '任务提交成功',
'account_balance': account_balance,
'data': {
'task_id': task_id,
'country': country,
'shop_id': shop_id,
'item_id': item_id,
}
2. 查询任务API
查询提交的任务状态信息。
查询条件:
1.按照task_id查询单个任务的状态信息
2.按照token查询近N次的任务状态信息
2.1. 地址
| URL | 请求方式 |
| http://localhost:51050/tasks/query | GET |
2.2. 请求参数
| 参数名 | 含义 | 规则说明 | 是否必须 | 缺省值 |
| token | token | 请求的token | 必填 | 无 |
| number | 任务个数 | 查询近N次的任务状态信息(按照提交时间倒序排序),默认number=10 | 否 | 10 |
| task_id | 任务id | 查询对应task_id的任务信息,如果该值为空,默认查询近N次的任务状态信息 | 否 | 无 |
2.3. 返回结果参数说明
响应结果的格式默认为 JSON 形式。
数据样例:
{
"status": 1,
"message": "ok",
"data": [{
"completion_time": null,
"country": "vn",
"item_id": "12",
"shop_id": "12",
"submit_time": "2025-10-01 09:00:00",
"task_id": "68e5ff4508cacf4c9007df71",
"task_status": "ready"
}]
}
以下是返回参数说明:
| 名称 | 含义 | 字段说明 | |
| status | 返回结果状态值 | 返回值为 0 或 1,0 表示查询失败;1 表示查询成功。 | |
| message | 返回状态说明 | 当 status 为 0 时,message 会返回具体错误原因,否则返回“OK”。 | |
| task_id | 任务id | 提交任务对应的任务id | |
| task_status | 任务状态 | submitted:已提交,running:运行中,运行成功:success,运行失败:failed | |
| country | 国家 | 国家编码 | |
| shop_id | 店铺Id | 商铺id | |
| item_id | 商品id | 商品id | |
| submit_time | 提交时间 | 提交任务的时间 | |
3. 获取数据接口
获取商品信息
查询条件:
1.按照task_id查询单个商品的信息
2.按照 提交时间 查询商品信息,需要分页查询
3.1. 地址
| URL | 请求方式 |
| http://localhost:51050/tasks/data | GET |
3.2. 请求参数
| 参数名 | 含义 | 字段说明 | 是否必须 | 缺省值 |
| token | token | 请求的token | 必填 | 无 |
| task_id | 任务id | 否 | ||
| submit_time | 提交时间 | 返回指定提交时间的以后的商品信息 | 否 | |
| page | 当前页码 | 当前页码,从1开始 | 否 | |
| page_size | 每页大小 | 默认1000,最大1000 | 否 | |
| total | 总记录数 | 否 | ||
| total_pages | 总页数 | 否 |
3.3. 返回结果参数说明
响应结果的格式默认为 JSON 形式。
以下是返回参数说明:
| 名称 | 含义 | 规则说明 | |
| status | 返回结果状态值 | 返回值为 0 或 1,0 表示查询失败;1 表示查询成功。 | |
| message | 返回状态说明 | 当 status 为 0 时,message 会返回具体错误原因,否则返回“OK”。 | |
| task_id | 任务id | 提交任务对应的任务id | |
| task_status | 任务状态 | submitted:已提交,running:运行中,运行成功:success,运行失败:failed | |
| country | 国家 | 国家编码 | |
| shop_id | 店铺Id | 商铺id | |
| item_id | 商品id | 商品id | |
| submit_time | 提交时间 | 提交任务的时间 | |
| data | 商品信息 | 商品信息,数据格式:[{"task_id": xx, },{"task_id": xx}] | |
返回数据样例:
{ "message": "获取成功",
"status": 1,
"completion_time": null,
"country": "vn",
"item_id": "12",
"shop_id": "12",
"submit_time": "2025-10-01 09:00:00",
"task_id": "68e5ff4508cacf4c9007df71",
"task_status": "ready"
"data": {
{
"bff_meta": null,
"error": null,
"error_msg": null,
"data": {
"item": {
"item_id": 19290536056,
"shop_id": 341363989,
"item_status": "normal",
"status": 1,
"item_type": 0,
"reference_item_id": "",
"title": "PUMA Rebound Lay Up Lo Camo Men's Sneakers (Black)",
"image": "sg-11134201-824hs-mei44rhmgbgh78",
"label_ids": [
22,
1000035,
1010074,
1011653,
1015733,
1428754,
700025219,
844931064601283,
1007622,
298843359,
822059734999051,
843079680351338,
700630038,
1993633,
1119699,
700445044,
840681033054223,
1718087960,
1428713,
700830024,
1688617,
298788312,
998031006
],
"is_adult": false,
"is_preview": false,
"flag": 131072,
"is_service_by_shopee": false,
"condition": 1,
"cat_id": 100012,
"has_low_fulfillment_rate": false,
"is_live_streaming_price": null,
"currency": "SGD",
"brand": "PUMA",
"brand_id": 2240153,
"show_discount": 0,
"ctime": 1688713352,
"item_rating": {
"rating_star": 4.918918918918919
},
"cb_option": 0,
"has_model_with_available_shopee_stock": false,
"shop_location": "SG",
"attributes": [
{
"name": "Top Height",
"value": "Low Top",
"id": 100207,
"is_timestamp": false,
"brand_option": null,
"val_id": 1737,
"url": null,
"brand_id": null,
"full_url": null,
"type": null,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
}
],
"rich_text_description": {
"paragraph_list": [
{
"type": 0,
"text": "Injecting PUMA DNA with a retro inspiration to this new basketball era, the Rebound sneakers feature a low-top basketball silhouette with some durable cupsole tooling and our SoftFoam+ sockliner to ensure a comfortable and supportive fit, whether on the court or in the city. ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " DETAILS ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " - Low-cut boot ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " - Synthetic upper ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " - SoftFoam+ sockliner ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " - Perforations on the vamp ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " - Rubber midsole ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " - Rubber outsole ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " - Camo print on the Formstrip ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " - Style : 368876",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
}
],
"source_language": null
},
"invoice_option": null,
"is_category_failed": null,
"is_prescription_item": false,
"preview_info": null,
"show_prescription_feed": false,
"is_alcohol_product": false,
"is_infant_milk_formula_product": false,
"is_unavailable": false,
"is_partial_fulfilled": false,
"is_presale": false,
"is_presale_deposit_item": null,
"is_presale_deposit_made": null,
"description": "Injecting PUMA DNA with a retro inspiration to this new basketball era, the Rebound sneakers feature a low-top basketball silhouette with some durable cupsole tooling and our SoftFoam+ sockliner to ensure a comfortable and supportive fit, whether on the court or in the city. \n\n \n\n DETAILS \n\n - Low-cut boot \n\n - Synthetic upper \n\n - SoftFoam+ sockliner \n\n - Perforations on the vamp \n\n - Rubber midsole \n\n - Rubber outsole \n\n - Camo print on the Formstrip \n\n - Style : 368876",
"categories": [
{
"catid": 100012,
"display_name": "Men Shoes",
"no_sub": false,
"is_default_subcat": false
},
{
"catid": 100064,
"display_name": "Sneakers",
"no_sub": true,
"is_default_subcat": false
}
],
"fe_categories": [
{
"catid": 11012767,
"display_name": "Men's Shoes",
"no_sub": false,
"is_default_subcat": false
},
{
"catid": 11012800,
"display_name": "Sneakers",
"no_sub": false,
"is_default_subcat": false
},
{
"catid": 11012803,
"display_name": "Low Top Sneakers",
"no_sub": true,
"is_default_subcat": false
}
],
"item_has_video": false,
"presale_dday_start_time": null,
"is_lowest_price_at_shopee": null,
"display_description_disclosure_rsku_redirection": null,
"display_similar_sold": null,
"title_type": 1,
"authorized_brand_name": null,
"models": [
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:10",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 0,
"fulfilment_type": 2,
"address_id": null,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 0,
"extinfo": {
"tier_index": [
0,
14
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245512,
"stock": 0,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 18,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": false,
"is_grayout": true,
"has_stock": false
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:12",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 9,
"fulfilment_type": 2,
"address_id": 0,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 9,
"extinfo": {
"tier_index": [
0,
17
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245507,
"stock": 9,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 4,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": true,
"is_grayout": false,
"has_stock": true
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:5",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 9,
"fulfilment_type": 2,
"address_id": 0,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 9,
"extinfo": {
"tier_index": [
0,
4
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245504,
"stock": 9,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 4,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": true,
"is_grayout": false,
"has_stock": true
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:3.5",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 0,
"fulfilment_type": 2,
"address_id": null,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 0,
"extinfo": {
"tier_index": [
0,
1
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245508,
"stock": 0,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 0,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": false,
"is_grayout": true,
"has_stock": false
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:4.5",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 9,
"fulfilment_type": 2,
"address_id": 0,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 9,
"extinfo": {
"tier_index": [
0,
3
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245516,
"stock": 9,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 3,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": true,
"is_grayout": false,
"has_stock": true
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:10.5",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 0,
"fulfilment_type": 2,
"address_id": null,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 0,
"extinfo": {
"tier_index": [
0,
15
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245513,
"stock": 0,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 5,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": false,
"is_grayout": true,
"has_stock": false
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:9",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 13,
"fulfilment_type": 2,
"address_id": 0,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 13,
"extinfo": {
"tier_index": [
0,
12
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245506,
"stock": 13,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 43,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": true,
"is_grayout": false,
"has_stock": true
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:4",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 11,
"fulfilment_type": 2,
"address_id": 0,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 11,
"extinfo": {
"tier_index": [
0,
2
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245499,
"stock": 11,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 2,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": true,
"is_grayout": false,
"has_stock": true
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:7",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 19,
"fulfilment_type": 2,
"address_id": 0,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 19,
"extinfo": {
"tier_index": [
0,
8
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245501,
"stock": 19,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 17,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": true,
"is_grayout": false,
"has_stock": true
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:8",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 34,
"fulfilment_type": 2,
"address_id": 0,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 34,
"extinfo": {
"tier_index": [
0,
10
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245510,
"stock": 34,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 30,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": true,
"is_grayout": false,
"has_stock": true
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:8.5",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 0,
"fulfilment_type": 2,
"address_id": null,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 0,
"extinfo": {
"tier_index": [
0,
11
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245503,
"stock": 0,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 12,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": false,
"is_grayout": true,
"has_stock": false
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:3",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 11,
"fulfilment_type": 2,
"address_id": 0,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 11,
"extinfo": {
"tier_index": [
0,
0
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245515,
"stock": 11,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 1,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": true,
"is_grayout": false,
"has_stock": true
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:13",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 0,
"fulfilment_type": 2,
"address_id": null,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 0,
"extinfo": {
"tier_index": [
0,
18
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245517,
"stock": 0,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 0,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": false,
"is_grayout": true,
"has_stock": false
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:7.5",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 4,
"fulfilment_type": 2,
"address_id": 0,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 4,
"extinfo": {
"tier_index": [
0,
9
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245502,
"stock": 4,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 15,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": true,
"is_grayout": false,
"has_stock": true
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:6.5",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 0,
"fulfilment_type": 2,
"address_id": null,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 0,
"extinfo": {
"tier_index": [
0,
7
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245500,
"stock": 0,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 0,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": false,
"is_grayout": true,
"has_stock": false
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:9.5",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 3,
"fulfilment_type": 2,
"address_id": 0,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 3,
"extinfo": {
"tier_index": [
0,
13
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245511,
"stock": 3,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 13,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": true,
"is_grayout": false,
"has_stock": true
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:5.5",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 13,
"fulfilment_type": 2,
"address_id": 0,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 13,
"extinfo": {
"tier_index": [
0,
5
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245505,
"stock": 13,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 0,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": true,
"is_grayout": false,
"has_stock": true
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:11",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 0,
"fulfilment_type": 2,
"address_id": null,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 0,
"extinfo": {
"tier_index": [
0,
16
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245514,
"stock": 0,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 18,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": false,
"is_grayout": true,
"has_stock": false
},
{
"item_id": 19290536056,
"status": 1,
"current_promotion_reserved_stock": 0,
"name": "PUMA Black-Puma Whit,UK:6",
"promotion_id": 0,
"price": 8900000,
"price_stocks": [
{
"allocated_stock": 0,
"stock_breakdown_by_location": [
{
"location_id": "SGZ",
"available_stock": 20,
"fulfilment_type": 2,
"address_id": 0,
"allocated_stock": null
}
],
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": 20,
"extinfo": {
"tier_index": [
0,
6
],
"is_pre_order": false,
"estimated_days": 1
},
"price_before_discount": 0,
"model_id": 194412245509,
"stock": 20,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": 8,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": true,
"is_grayout": false,
"has_stock": true
}
],
"tier_variations": [
{
"name": "Color",
"options": [
"PUMA Black-Puma Whit"
],
"images": [
"sg-11134201-7rd3v-m7q7nreair2022"
],
"properties": null,
"type": 0,
"summed_stocks": null,
"display_indicators": [
0
],
"name_tr": null,
"options_tr": null,
"selling_points": null,
"selling_points_tr": null
},
{
"name": "Size",
"options": [
"UK:3",
"UK:3.5",
"UK:4",
"UK:4.5",
"UK:5",
"UK:5.5",
"UK:6",
"UK:6.5",
"UK:7",
"UK:7.5",
"UK:8",
"UK:8.5",
"UK:9",
"UK:9.5",
"UK:10",
"UK:10.5",
"UK:11",
"UK:12",
"UK:13"
],
"images": null,
"properties": null,
"type": 0,
"summed_stocks": null,
"display_indicators": [
0,
2,
0,
0,
0,
0,
0,
2,
0,
0,
0,
2,
0,
0,
2,
2,
2,
0,
2
],
"name_tr": null,
"options_tr": null,
"selling_points": null,
"selling_points_tr": null
}
],
"size_chart": "sg-11134201-7rdy9-lxcj6ksv86fa8f",
"size_chart_info": null,
"welcome_package_type": 0,
"is_free_gift": false,
"deep_discount": null,
"is_low_price_eligible": null,
"bundle_deal_info": null,
"add_on_deal_info": null,
"shipping_icon_type": 0,
"badge_icon_type": 0,
"spl_info": {
"installment_info": null,
"user_credit_info": null,
"channel_id": null,
"show_spl": true,
"show_spl_lite": null,
"spl_xtra": null,
"spl_motorcycle_loan": null
},
"estimated_days": 1,
"is_pre_order": false,
"is_free_shipping": false,
"overall_purchase_limit": null,
"min_purchase_limit": 0,
"is_hide_stock": false,
"stock": 155,
"normal_stock": 155,
"current_promotion_reserved_stock": 0,
"can_use_wholesale": false,
"wholesale_tier_list": [],
"price": 8900000,
"raw_discount": 0,
"hidden_price_display": null,
"price_min": 8900000,
"price_max": 8900000,
"price_before_discount": 8900000,
"price_min_before_discount": 8900000,
"price_max_before_discount": 8900000,
"other_stock": 155,
"discount_stock": 0,
"current_promotion_has_reserve_stock": false,
"complaint_policy": null,
"show_recycling_info": null,
"should_show_amp_tag": true,
"all_models_has_pre_order": false,
"is_item_inherited": false,
"max_quantity": 155,
"drug_details": null,
"selected_real_models": null,
"size_tier_variation_idx": null,
"is_fashion_item": true,
"social_proof_label": null,
"title_tr": null,
"description_tr": null,
"rich_text_description_tr": null,
"stock_display": "IN STOCK",
"max_quantity_display": "IN STOCK"
},
"account": {
"user_id": 1290725105,
"is_new_user": true,
"default_address": {
"state": "",
"city": "",
"district": "",
"town": "",
"zip_code": null,
"address": null,
"region": null,
"longitude": null,
"latitude": null
},
"adult_consent": 0,
"birth_timestamp": 0
},
"product_images": {
"video": null,
"images": [
"sg-11134201-824hs-mei44rhmgbgh78",
"sg-11134201-824ie-mei44rpeg6pyc4",
"sg-11134201-824hz-me8v1yij785d4b",
"sg-11134201-824gz-me8v1yo90ver4c",
"sg-11134201-824gw-mei44rt92ww280",
"sg-11134201-824hi-me8v1yi9vk020d",
"sg-11134201-824hd-mei44rks43r9ca"
],
"first_tier_variations": [
{
"name": "PUMA Black-Puma Whit",
"image": "sg-11134201-7rd3v-m7q7nreair2022",
"summed_stock": 155,
"display_indicator": 0,
"show_find_similar": false,
"name_tr": null,
"selling_point": "",
"selling_point_tr": null
}
],
"sorted_variation_image_index_list": [],
"overlay": {
"type": 0,
"image": "sg-11134258-82584-mexxbd86amtf2a",
"preview_end_time": null,
"is_pre_order": null,
"description": ""
},
"makeup_preview": null,
"abnormal_status": "",
"promotion_images": [],
"long_images": null,
"shopee_video_info_list": [],
"shopee_video_rcmd_info": null,
"shopee_video_req_id": null,
"skincam": null,
"pdp_top_info_list": null,
"has_long_image": null,
"show_find_similar": false,
"try_it_on": null,
"show_find_similar_for_selection": false,
"beautycam": null
},
"product_price": {
"discount": 25,
"installment_info": null,
"spl_installment_info": null,
"pack_size": "",
"hide_price": false,
"price": {
"single_value": 6675000,
"range_min": -1,
"range_max": -1,
"price_mask": null
},
"price_before_discount": {
"single_value": 8900000,
"range_min": -1,
"range_max": -1,
"price_mask": null
},
"presale_price": null,
"lowest_past_price": null,
"labels": [
{
"type": 0,
"text": "Free Returns",
"color": "#26AA99",
"display": "free_return",
"exclusive_price": null,
"promotion_id": null,
"voucher_ext_info": null
}
],
"hide_discount": true,
"discount_text": null,
"show_final_price_indicator": true,
"final_price_vouchers": [
{
"promotion_id": 1253281805246464,
"voucher_code": "PUMAEDSXZ",
"is_auto_claimed_just_now": false,
"groups": null,
"voucher_type": 1
}
],
"has_final_price": true,
"final_price_info": {
"model_id": 194412245507,
"hint_text": "After Voucher"
}
},
"flash_sale": null,
"flash_sale_preview": null,
"deep_discount": null,
"exclusive_price": null,
"exclusive_price_cta": null,
"product_meta": {
"show_lowest_price_guarantee": null,
"show_original_guarantee": null,
"show_best_price_guarantee": false,
"show_official_shop_label_in_title": true,
"show_shopee_verified_label": false,
"show_lowest_installment_guarantee": null,
"hide_sharing_button": false,
"hide_sold_count": false,
"show_description_translation_button": null
},
"product_review": {
"rating_star": 4.918918918918919,
"rating_count": [
74,
0,
0,
1,
4,
69
],
"total_rating_count": 74,
"historical_sold": 193,
"global_sold": 193,
"liked": false,
"liked_count": 184,
"cmt_count": 74,
"should_move_ratings_above": null,
"review_rcmd_exp_group": null,
"display_global_sold": false,
"hide_rating": false,
"hide_buyer_gallery": false,
"hide_reviews": false,
"hide_other_product_reviews_in_shop": false,
"sold_count_disclosure": null,
"historical_sold_display": "193",
"global_sold_display": "193",
"sold_count_display": "193"
},
"promotion_info": {
"spl": null,
"spl_lite": null,
"installment": null,
"wholesale": null,
"insurance": null,
"item_installment_eligibility": {
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false
}
},
"age_gate": {
"kyc": null
},
"shipping_meta": null,
"product_shipping": {
"free_shipping": {
"min_spend": null,
"has_fss": false
},
"shipping_fee_info": {
"ship_from_location": "SG",
"price": {
"single_value": -1,
"range_min": 0,
"range_max": 199000,
"price_mask": null
},
"shipping_icon_type": 0,
"warning": null
},
"show_shipping_to": false,
"ungrouped_channel_infos": [
{
"channel_id": 1004,
"name": "Next Day Doorstep Delivery",
"price": {
"single_value": 199000,
"range_min": -1,
"range_max": -1,
"price_mask": null
},
"price_before_discount": null,
"channel_delivery_info": {
"has_edt": true,
"display_mode": "edt_by_date",
"estimated_delivery_date_from": 1759805284,
"estimated_delivery_date_to": 1759805284,
"estimated_delivery_time_min": 1,
"estimated_delivery_time_max": 1,
"delay_message": "Orders paid after 2pm will be delivered the day after tomorrow, excl. Sun \u0026 PH",
"is_fastest_edt_channel": true,
"sla_message": "",
"show_edt": true,
"edt_text": "Guaranteed to get by tomorrow",
"formatted_edt_text": [
{
"template": "{pdp_guaranteed_get_by_tomorrow+pdp_label_edt_instructions_before_cutoff_time}",
"format": null,
"attributes": [
{
"type": 1,
"key": "pdp_guaranteed_get_by_tomorrow+pdp_label_edt_instructions_before_cutoff_time",
"value": {
"value_str": "Guaranteed to get by tomorrow, if order by 2:00PM",
"value_int": null
},
"format": [
2
],
"text_color": null,
"text_hex_color": "#26aa99"
}
],
"text_color": null,
"text_hex_color": null
}
],
"formatted_pre_order_text": null,
"formatted_fbs_description_text": null,
"show_edt_as_header": false
},
"channel_promotion_infos": [],
"warning": null,
"shipping_icon_type": null,
"lowest_bpsf_promotion_rule": null,
"service_type_info": "same_day",
"is_integrated_channel": true,
"late_delivery_compensation": {
"type": 1,
"amount": 200000,
"is_guaranteed_edt": true,
"compensation_amount": null,
"text": null
},
"is_sst_included": false,
"display_text": {
"late_delivery_compensation": {
"text": "Get a {compensation_amount} voucher if your order arrives late.",
"gdt_max": null,
"compensation_amount": {
"value": 200000
}
},
"direct_delivery": null,
"fulfilled_by_shopee": null,
"spx_instant_delivery": null
},
"rule_type": 0,
"is_xdd_channel": true,
"show_shopee_plus_icon": false,
"xdd_value": 1,
"hide_shipping_fee": null,
"edt_tracking_info": "{\"edt_min\":1,\"edt_max\":1,\"edt_min_hours\":24,\"edt_max_hours\":24,\"edt_display_identifier\":787593,\"buyer_address_hash\":\"lirpXVm\",\"is_cache_edt\":false}"
}
],
"grouped_channel_infos_by_service_type": [
{
"name": "Self Collection",
"channel_infos": [
{
"channel_id": 10098,
"name": "Pick Lockers",
"price": {
"single_value": 0,
"range_min": -1,
"range_max": -1,
"price_mask": null
},
"price_before_discount": null,
"channel_delivery_info": {
"has_edt": true,
"display_mode": "edt_by_date",
"estimated_delivery_date_from": 1759805284,
"estimated_delivery_date_to": 1759891684,
"estimated_delivery_time_min": 1,
"estimated_delivery_time_max": 2,
"delay_message": "Collect parcel within 3 calendar days of receiving PIN",
"is_fastest_edt_channel": false,
"sla_message": "",
"show_edt": true,
"edt_text": "Guaranteed to get by 7 Oct - 8 Oct",
"formatted_edt_text": [
{
"template": "{pdp_guaranteed_get_by_date_range}",
"format": null,
"attributes": [
{
"type": 1,
"key": "pdp_guaranteed_get_by_date_range",
"value": {
"value_str": "Guaranteed to get by 7 Oct - 8 Oct",
"value_int": null
},
"format": null,
"text_color": null,
"text_hex_color": "#000000de"
}
],
"text_color": null,
"text_hex_color": null
}
],
"formatted_pre_order_text": null,
"formatted_fbs_description_text": null,
"show_edt_as_header": false
},
"channel_promotion_infos": null,
"warning": null,
"shipping_icon_type": null,
"lowest_bpsf_promotion_rule": null,
"service_type_info": "self_collection",
"is_integrated_channel": true,
"late_delivery_compensation": {
"type": 1,
"amount": 100000,
"is_guaranteed_edt": true,
"compensation_amount": null,
"text": null
},
"is_sst_included": false,
"display_text": {
"late_delivery_compensation": {
"text": "Get a {compensation_amount} voucher if your order arrives late.",
"gdt_max": null,
"compensation_amount": {
"value": 100000
}
},
"direct_delivery": null,
"fulfilled_by_shopee": null,
"spx_instant_delivery": null
},
"rule_type": 0,
"is_xdd_channel": false,
"show_shopee_plus_icon": false,
"xdd_value": null,
"hide_shipping_fee": null,
"edt_tracking_info": "{\"edt_min\":1,\"edt_max\":2,\"edt_min_hours\":24,\"edt_max_hours\":48,\"edt_display_identifier\":327689,\"buyer_address_hash\":\"lirpXVm\",\"is_cache_edt\":false}"
},
{
"channel_id": 10099,
"name": "Collection Points",
"price": {
"single_value": 0,
"range_min": -1,
"range_max": -1,
"price_mask": null
},
"price_before_discount": null,
"channel_delivery_info": {
"has_edt": true,
"display_mode": "edt_by_date",
"estimated_delivery_date_from": 1759813101,
"estimated_delivery_date_to": 1759890593,
"estimated_delivery_time_min": 1,
"estimated_delivery_time_max": 2,
"delay_message": "Collect parcel within 3 calendar days of receiving PIN",
"is_fastest_edt_channel": false,
"sla_message": "",
"show_edt": true,
"edt_text": "Guaranteed to get by 7 Oct - 8 Oct",
"formatted_edt_text": [
{
"template": "{pdp_guaranteed_get_by_date_range}",
"format": null,
"attributes": [
{
"type": 1,
"key": "pdp_guaranteed_get_by_date_range",
"value": {
"value_str": "Guaranteed to get by 7 Oct - 8 Oct",
"value_int": null
},
"format": null,
"text_color": null,
"text_hex_color": "#000000de"
}
],
"text_color": null,
"text_hex_color": null
}
],
"formatted_pre_order_text": null,
"formatted_fbs_description_text": null,
"show_edt_as_header": false
},
"channel_promotion_infos": null,
"warning": null,
"shipping_icon_type": null,
"lowest_bpsf_promotion_rule": null,
"service_type_info": "self_collection",
"is_integrated_channel": true,
"late_delivery_compensation": {
"type": 1,
"amount": 100000,
"is_guaranteed_edt": true,
"compensation_amount": null,
"text": null
},
"is_sst_included": false,
"display_text": {
"late_delivery_compensation": {
"text": "Get a {compensation_amount} voucher if your order arrives late.",
"gdt_max": null,
"compensation_amount": {
"value": 100000
}
},
"direct_delivery": null,
"fulfilled_by_shopee": null,
"spx_instant_delivery": null
},
"rule_type": 0,
"is_xdd_channel": false,
"show_shopee_plus_icon": false,
"xdd_value": null,
"hide_shipping_fee": null,
"edt_tracking_info": "{\"edt_min\":1,\"edt_max\":2,\"edt_min_hours\":27,\"edt_max_hours\":48,\"edt_display_identifier\":327689,\"buyer_address_hash\":\"lirpXVm\",\"is_cache_edt\":false}"
}
]
}
],
"also_available_channel_name": "",
"pre_selected_shipping_channel": {
"channel_id": 1004,
"name": "Next Day Doorstep Delivery",
"price": {
"single_value": 199000,
"range_min": -1,
"range_max": -1,
"price_mask": ""
},
"price_before_discount": {
"single_value": 0,
"range_min": 0,
"range_max": 0,
"price_mask": ""
},
"channel_delivery_info": {
"has_edt": true,
"display_mode": "edt_by_date",
"estimated_delivery_date_from": 1759805284,
"estimated_delivery_date_to": 1759805284,
"estimated_delivery_time_min": 1,
"estimated_delivery_time_max": 1,
"delay_message": "Orders paid after 2pm will be delivered the day after tomorrow, excl. Sun \u0026 PH",
"is_fastest_edt_channel": true,
"sla_message": "",
"show_edt": true,
"edt_text": "Guaranteed to get by tomorrow",
"formatted_edt_text": [
{
"template": "{pdp_guaranteed_get_by_tomorrow+pdp_label_edt_instructions_before_cutoff_time}",
"format": [],
"attributes": [
{
"type": 1,
"key": "pdp_guaranteed_get_by_tomorrow+pdp_label_edt_instructions_before_cutoff_time",
"value": {
"value_str": "Guaranteed to get by tomorrow, if order by 2:00PM",
"value_int": null
},
"format": [
2
],
"text_color": null,
"text_hex_color": "#26aa99"
}
],
"text_color": null,
"text_hex_color": null
}
],
"formatted_pre_order_text": null,
"formatted_fbs_description_text": null,
"show_edt_as_header": false
},
"channel_promotion_infos": [],
"warning": {
"type": "",
"warning_msg": ""
},
"shipping_icon_type": null,
"lowest_bpsf_promotion_rule": null,
"service_type_info": "same_day",
"is_integrated_channel": true,
"late_delivery_compensation": {
"type": 1,
"amount": 200000,
"is_guaranteed_edt": true,
"compensation_amount": {
"value": 200000
},
"text": ""
},
"is_sst_included": false,
"display_text": {
"late_delivery_compensation": {
"text": "Get a {compensation_amount} voucher if your order arrives late.",
"gdt_max": null,
"compensation_amount": {
"value": 200000
}
},
"direct_delivery": null,
"fulfilled_by_shopee": null,
"spx_instant_delivery": null
},
"rule_type": 0,
"is_xdd_channel": true,
"show_shopee_plus_icon": false,
"xdd_value": 1,
"hide_shipping_fee": null,
"edt_tracking_info": "{\"edt_min\":1,\"edt_max\":1,\"edt_min_hours\":24,\"edt_max_hours\":24,\"edt_display_identifier\":1573893,\"buyer_address_hash\":\"lirpXVm\",\"is_cache_edt\":false}"
},
"show_grouped_channel_first": false,
"is_item_with_price_range": false,
"also_available_channel_icon_type": null,
"pre_order_text": "",
"selected_late_delivery_compensation_for_drawer": null,
"shipping_info_text": {
"text_template": null,
"shipping_fee": null,
"edt_from": null,
"edt_to": null,
"show_shipping_fee_suffix": false,
"formatted_text": {
"edt": {
"template": "{pdp_shipping_xdd_%d+}{pdp_edt_tomorrow_only+pdp_label_edt_instructions_before_cutoff_time}",
"format": null,
"attributes": [
{
"type": 1,
"key": "pdp_shipping_xdd_%d+",
"value": {
"value_str": "Next Day Delivery ",
"value_int": null
},
"format": [
1,
6
],
"text_color": null,
"text_hex_color": "#000000de"
},
{
"type": 1,
"key": "pdp_edt_tomorrow_only+pdp_label_edt_instructions_before_cutoff_time",
"value": {
"value_str": "by tomorrow, if order by 2:00PM",
"value_int": null
},
"format": null,
"text_color": null,
"text_hex_color": "#000000de"
}
],
"text_color": null,
"text_hex_color": null
},
"shipping_fee": null,
"late_delivery_compensation": {
"template": "Get a {compensation_amount} voucher if your order arrives late.",
"format": null,
"attributes": [
{
"type": 2,
"key": "compensation_amount",
"value": {
"value_str": null,
"value_int": 200000
},
"format": null,
"text_color": null,
"text_hex_color": null
}
],
"text_color": null,
"text_hex_color": null
},
"fbs_description": null,
"display_edt_text_first_line": true
},
"highlight_free_shipping": false
},
"formatted_pre_order_text": null,
"has_free_return": null,
"model_id": 194412245499,
"delivery_address": {
"state": "",
"city": "",
"district": null,
"town": null,
"zip_code": null,
"address": null,
"region": null,
"longitude": null,
"latitude": null
}
},
"shop_vouchers": [
{
"promotionid": 1253281805246464,
"voucher_code": "PUMAEDSXZ",
"signature": "9b143fc3673e5ff3469597e7891e24167789333c5f259f9bf55174818ac67518",
"use_type": 0,
"platform_type": null,
"voucher_market_type": 1,
"min_spend": 0,
"used_price": 2225000,
"current_spend": null,
"product_limit": true,
"quota_type": 1,
"percentage_claimed": 0,
"percentage_used": 10,
"start_time": 1759161600,
"end_time": 1759766340,
"collect_time": 0,
"claim_start_time": 0,
"valid_days": 0,
"reward_type": 0,
"reward_percentage": 25,
"reward_value": 0,
"reward_cap": 0,
"coin_earned": null,
"title": null,
"use_link": null,
"icon_hash": "de732f6b57d4894ff27e9c238e8ba382",
"icon_text": "PUMA Singapore Official Store",
"icon_url": null,
"customised_labels": [],
"customised_product_scope_tags": null,
"shop_id": 341363989,
"shop_name": "PUMA Singapore Official Store",
"is_shop_preferred": false,
"is_shop_official": true,
"shop_count": null,
"ui_display_type": null,
"customised_mall_name": null,
"small_icon_list": null,
"dp_category_name": null,
"invalid_message_code": null,
"invalid_message": null,
"display_labels": null,
"wallet_redeemable": false,
"customer_reference_id": "SHOP-94CA72D42C8A02280000001015055144",
"fully_redeemed": null,
"has_expired": null,
"disabled": null,
"voucher_external_market_type": null,
"now_food_extra_info": null,
"airpay_opv_extra_info": null,
"partner_extra_info": null,
"discount_value": 0,
"discount_percentage": 25,
"discount_cap": 0,
"coin_percentage": null,
"coin_cap": null,
"usage_limit": null,
"used_count": null,
"left_count": null,
"shopee_wallet_only": false,
"new_user_only": null,
"description": "This page is not supported on your version of Shopee app. Please update your app to view.",
"shop_logo": "de732f6b57d4894ff27e9c238e8ba382",
"error_code": 0,
"is_claimed_before": false,
"customised_product_scope_tag_image_hash": null,
"usage_limit_per_user": 5,
"remaining_usage_limit": 5,
"action": null,
"sub_icon_text": null,
"is_customised_icon": null,
"fixed_flag": null,
"customised_flag": null,
"fsv_voucher_card_ui_info": null
},
{
"promotionid": 1253281443618816,
"voucher_code": "PUMADSZX",
"signature": "e5b4bf9e7547e76b5a06ff194d6108bac705085da7eb67523310b46bd6d9129a",
"use_type": 0,
"platform_type": null,
"voucher_market_type": 1,
"min_spend": 0,
"used_price": 890000,
"current_spend": null,
"product_limit": true,
"quota_type": 1,
"percentage_claimed": 0,
"percentage_used": 10,
"start_time": 1759161600,
"end_time": 1759766340,
"collect_time": 0,
"claim_start_time": 0,
"valid_days": 0,
"reward_type": 0,
"reward_percentage": 10,
"reward_value": 0,
"reward_cap": 0,
"coin_earned": null,
"title": null,
"use_link": null,
"icon_hash": "de732f6b57d4894ff27e9c238e8ba382",
"icon_text": "PUMA Singapore Official Store",
"icon_url": null,
"customised_labels": [],
"customised_product_scope_tags": null,
"shop_id": 341363989,
"shop_name": "PUMA Singapore Official Store",
"is_shop_preferred": false,
"is_shop_official": true,
"shop_count": null,
"ui_display_type": null,
"customised_mall_name": null,
"small_icon_list": null,
"dp_category_name": null,
"invalid_message_code": null,
"invalid_message": null,
"display_labels": null,
"wallet_redeemable": false,
"customer_reference_id": "SHOP-392732802C8A02280000001015055144",
"fully_redeemed": null,
"has_expired": null,
"disabled": null,
"voucher_external_market_type": null,
"now_food_extra_info": null,
"airpay_opv_extra_info": null,
"partner_extra_info": null,
"discount_value": 0,
"discount_percentage": 10,
"discount_cap": 0,
"coin_percentage": null,
"coin_cap": null,
"usage_limit": null,
"used_count": null,
"left_count": null,
"shopee_wallet_only": false,
"new_user_only": null,
"description": "This page is not supported on your version of Shopee app. Please update your app to view.",
"shop_logo": "de732f6b57d4894ff27e9c238e8ba382",
"error_code": 0,
"is_claimed_before": false,
"customised_product_scope_tag_image_hash": null,
"usage_limit_per_user": 5,
"remaining_usage_limit": 5,
"action": null,
"sub_icon_text": null,
"is_customised_icon": null,
"fixed_flag": null,
"customised_flag": null,
"fsv_voucher_card_ui_info": null
},
{
"promotionid": 1253282592858112,
"voucher_code": "PUMASXZ",
"signature": "a253345c5442095a1aff3e9314a725a17f82211f21c00854b79fdf03efd6c3d0",
"use_type": 0,
"platform_type": null,
"voucher_market_type": 1,
"min_spend": 12000000,
"used_price": 2670000,
"current_spend": null,
"product_limit": true,
"quota_type": 1,
"percentage_claimed": 0,
"percentage_used": 10,
"start_time": 1759161600,
"end_time": 1759766340,
"collect_time": 0,
"claim_start_time": 0,
"valid_days": 0,
"reward_type": 0,
"reward_percentage": 30,
"reward_value": 0,
"reward_cap": 0,
"coin_earned": null,
"title": null,
"use_link": null,
"icon_hash": "de732f6b57d4894ff27e9c238e8ba382",
"icon_text": "PUMA Singapore Official Store",
"icon_url": null,
"customised_labels": [],
"customised_product_scope_tags": null,
"shop_id": 341363989,
"shop_name": "PUMA Singapore Official Store",
"is_shop_preferred": false,
"is_shop_official": true,
"shop_count": null,
"ui_display_type": null,
"customised_mall_name": null,
"small_icon_list": null,
"dp_category_name": null,
"invalid_message_code": null,
"invalid_message": null,
"display_labels": null,
"wallet_redeemable": false,
"customer_reference_id": "SHOP-EB35F2802C8A02280000001015055144",
"fully_redeemed": null,
"has_expired": null,
"disabled": null,
"voucher_external_market_type": null,
"now_food_extra_info": null,
"airpay_opv_extra_info": null,
"partner_extra_info": null,
"discount_value": 0,
"discount_percentage": 30,
"discount_cap": 0,
"coin_percentage": null,
"coin_cap": null,
"usage_limit": null,
"used_count": null,
"left_count": null,
"shopee_wallet_only": false,
"new_user_only": null,
"description": "This page is not supported on your version of Shopee app. Please update your app to view.",
"shop_logo": "de732f6b57d4894ff27e9c238e8ba382",
"error_code": 9,
"is_claimed_before": false,
"customised_product_scope_tag_image_hash": null,
"usage_limit_per_user": 5,
"remaining_usage_limit": 5,
"action": null,
"sub_icon_text": null,
"is_customised_icon": null,
"fixed_flag": null,
"customised_flag": null,
"fsv_voucher_card_ui_info": null
},
{
"promotionid": 1251835843452928,
"voucher_code": "SVC-1251835843452928",
"signature": "d6b5f95e2a7ae4c4745cea07430957f2f281b1eb7aa7b9276ff356bafca1fd09",
"use_type": 0,
"platform_type": null,
"voucher_market_type": 1,
"min_spend": 0,
"used_price": 0,
"current_spend": null,
"product_limit": false,
"quota_type": 1,
"percentage_claimed": 0,
"percentage_used": 10,
"start_time": 1760011200,
"end_time": 1760443199,
"collect_time": 0,
"claim_start_time": 0,
"valid_days": 0,
"reward_type": 1,
"reward_percentage": 12,
"reward_value": 0,
"reward_cap": 600,
"coin_earned": 0,
"title": null,
"use_link": null,
"icon_hash": "de732f6b57d4894ff27e9c238e8ba382",
"icon_text": "PUMA Singapore Official Store",
"icon_url": null,
"customised_labels": [],
"customised_product_scope_tags": null,
"shop_id": 341363989,
"shop_name": "PUMA Singapore Official Store",
"is_shop_preferred": false,
"is_shop_official": true,
"shop_count": null,
"ui_display_type": null,
"customised_mall_name": null,
"small_icon_list": null,
"dp_category_name": null,
"invalid_message_code": null,
"invalid_message": null,
"display_labels": null,
"wallet_redeemable": false,
"customer_reference_id": "SHOP-CFFCD2B8A48A02280000001015044041",
"fully_redeemed": null,
"has_expired": null,
"disabled": null,
"voucher_external_market_type": null,
"now_food_extra_info": null,
"airpay_opv_extra_info": null,
"partner_extra_info": null,
"discount_value": null,
"discount_percentage": null,
"discount_cap": null,
"coin_percentage": 12,
"coin_cap": 600,
"usage_limit": null,
"used_count": null,
"left_count": null,
"shopee_wallet_only": false,
"new_user_only": null,
"description": "This page is not supported on your version of Shopee app. Please update your app to view.",
"shop_logo": "de732f6b57d4894ff27e9c238e8ba382",
"error_code": 17,
"is_claimed_before": false,
"customised_product_scope_tag_image_hash": null,
"usage_limit_per_user": 1,
"remaining_usage_limit": 1,
"action": null,
"sub_icon_text": null,
"is_customised_icon": null,
"fixed_flag": null,
"customised_flag": null,
"fsv_voucher_card_ui_info": null
}
],
"free_return": null,
"coin_info": {
"spend_cash_unit": 1000,
"coin_earn_items": [
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
},
{
"coin_earn": 0
}
],
"coin_earn_label": null
},
"product_attributes": {
"attrs": [
{
"name": "Stock",
"value": "IN STOCK",
"id": null,
"is_timestamp": null,
"brand_option": null,
"val_id": null,
"url": null,
"brand_id": null,
"full_url": null,
"type": 7,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
},
{
"name": "Brand",
"value": "PUMA",
"id": null,
"is_timestamp": null,
"brand_option": null,
"val_id": null,
"url": "/search?brands=2240153",
"brand_id": 2240153,
"full_url": "https://shopee.sg/search?brands=2240153",
"type": 1,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
},
{
"name": "Top Height",
"value": "Low Top",
"id": 100207,
"is_timestamp": null,
"brand_option": null,
"val_id": null,
"url": null,
"brand_id": null,
"full_url": null,
"type": 5,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
},
{
"name": "Ships From",
"value": "SG",
"id": null,
"is_timestamp": null,
"brand_option": null,
"val_id": null,
"url": null,
"brand_id": null,
"full_url": null,
"type": 6,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
}
],
"categories": [
{
"catid": 11012767,
"display_name": "Men's Shoes",
"no_sub": false,
"is_default_subcat": false
},
{
"catid": 11012800,
"display_name": "Sneakers",
"no_sub": false,
"is_default_subcat": false
},
{
"catid": 11012803,
"display_name": "Low Top Sneakers",
"no_sub": true,
"is_default_subcat": false
}
],
"related_items": []
},
"shop_detailed": {
"shopid": 341363989,
"userid": 341383564,
"last_active_time": 1759718713,
"vacation": false,
"place": "Supply Chain City, Level 1 Warehouse\n8 Bulim Avenue, SG",
"account": {
"portrait": "de732f6b57d4894ff27e9c238e8ba382",
"username": "puma_singapore",
"status": 1
},
"is_shopee_verified": false,
"is_preferred_plus_seller": false,
"is_official_shop": true,
"shop_location": "",
"item_count": 940,
"rating_star": 4.883606,
"response_rate": 100,
"session_info": null,
"name": "PUMA Singapore Official Store",
"ctime": 1605758739,
"response_time": 4654,
"follower_count": 190864,
"show_official_shop_label": true,
"rating_bad": 485,
"rating_good": 62473,
"rating_normal": 1184,
"session_infos": null,
"status": 1,
"is_individual_seller": null,
"is_mart": false,
"favorite_shop_info": null,
"is_3pf": false,
"sold_total": 155385,
"is_shopee_choice": false,
"is_high_end": false,
"banner": {
"shopee_choice": null
},
"authorized_brand": null,
"is_scs": false,
"shop_location_tr": null,
"sold_total_display": null,
"is_outlet": false,
"display_fbs_logo": false
},
"age_gate_control": null,
"abnormal_popup": null,
"return_on_spot": null,
"display_sections": {
"add_on_deal": null,
"bundle_deal": null,
"exclusive_price_label": null,
"free_return": null,
"coin": null,
"wholesale": null
},
"ineligible_ep": null,
"tax_disclaimer": null,
"alcohol_disclaimer": null,
"design_control": {
"use_new_revamp_first_screen": null,
"display_on_time_delivery_guarantee": true,
"disable_price_with_variation": false,
"display_direct_delivery": false,
"use_new_featured_video_revamp": null,
"first_screen_revamp_abtest_group": null,
"display_choice_customised_section": false,
"is_support_fbs_enabled": false,
"top_section_featured_video_ab_test_group": null,
"enable_ksp_config": null,
"disable_main_page_select_variation": null,
"support_shop_review_preview": null,
"pdp_revamp_phase1_improvement_ui_review_down": null,
"display_fashion_attributes": null,
"display_fashion_review_section": null,
"display_fashion_first_screen": null,
"enable_fashion_review_improvements": null,
"display_fbs_floating_counter": null,
"display_shipping_drawer_new_free_shipping_text": false,
"display_shipping_drawer_new_free_shipping_ui": false
},
"shopee_free_return": null,
"detail_level": 0,
"removed_fields": null,
"size_guide": null,
"designer_info": null,
"shipping_info": null,
"vehicle_compatibility_info": null,
"nea": null,
"button_group": {
"buy_with_voucher": {
"price": 6675000
},
"ineligible_user_platform_exclusive_sku": null
},
"installment_drawer": {
"priority": [
0,
1
],
"spl": null,
"bank": {
"channels": null
},
"credit_card": null
},
"ongoing_banner": null,
"teaser_banner": null,
"price_breakdown": {
"price": {
"single_value": 6675000,
"range_min": -1,
"range_max": -1,
"price_mask": null
},
"price_before_discount": {
"single_value": 8900000,
"range_min": -1,
"range_max": -1,
"price_mask": null
},
"discount_breakdown": [
{
"type": 2,
"price_source": "Shop Voucher Discount",
"discount_amount": 2225000,
"exclusive_price": null,
"shop_voucher": {
"min_spend": 0,
"discount_type": 1,
"discount_value": null,
"discount_percentage": "25"
},
"platform_voucher": null
}
]
},
"membership_exclusive": null,
"membership_exclusive_teaser": null,
"service_entrance": {
"services": [
{
"text": "100% Authentic",
"type": null,
"id": 40
},
{
"text": "15-Day Free Returns",
"type": null,
"id": 38
},
{
"text": "Damage Protection",
"type": null,
"id": 42
}
]
},
"service_drawer": {
"services": [
{
"title": "100% Authentic",
"description": "Shopee Mall products are guaranteed 100% authentic, and are sourced directly from brands and authorised distributors. If you receive an inauthentic product, you may request for a 2x refund.",
"type": null,
"free_return": null,
"insurance": null,
"id": 40,
"redirection_url": "https://shopee.sg/m/shopee-mall-100-authentic",
"icon": "tw-11134258-7rasc-m16w5grsqh2080",
"insurance_drawer": null
},
{
"title": "15-Day Free Returns",
"description": "Free returns can be requested within 15 days from the date of delivery. To qualify for change of mind returns, items must be in original condition, with packaging and labels intact (including free gifts) and safety seals unbroken. Applicable to selected items. T\u0026Cs apply.",
"type": null,
"free_return": null,
"insurance": null,
"id": 38,
"redirection_url": "https://shopee.sg/pdp-com",
"icon": "tw-11134258-7rasd-m16w5gn2xdjs7a",
"insurance_drawer": null
},
{
"title": "Damage Protection",
"description": "Protects your new item for 6 months from date of delivery, covering total loss as a result of Accidental \u0026 Liquid damage and Wear \u0026 Tear",
"type": null,
"free_return": null,
"insurance": null,
"id": 42,
"redirection_url": "https://protection.shopee.sg/ec/ec-pdp.html?from=pdp\u0026locale=EN\u0026product_id=1797114099235034162",
"icon": "tw-11134258-7rase-m16w5gqesi5416",
"insurance_drawer": {}
}
]
},
"trade_in": null,
"product_description": {
"paragraph_list": [
{
"type": 0,
"text": "Injecting PUMA DNA with a retro inspiration to this new basketball era, the Rebound sneakers feature a low-top basketball silhouette with some durable cupsole tooling and our SoftFoam+ sockliner to ensure a comfortable and supportive fit, whether on the court or in the city. ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " DETAILS ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " - Low-cut boot ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " - Synthetic upper ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " - SoftFoam+ sockliner ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " - Perforations on the vamp ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " - Rubber midsole ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " - Rubber outsole ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " - Camo print on the Formstrip ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": " - Style : 368876",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
}
],
"source_language": ""
},
"selected_tiers": null,
"size_info": null,
"size_recommendation": null
}
}
}
有疑问可留言
5683





